.course-thumb{
    width: 100%;
    height: 100px;
    display: block
}

.course-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.media-upload-box {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.media-upload-box:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Labels */
.upload-label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    color: #333;
}

/* Preview container */
.upload-preview {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 8px;
    background: #fff;
    cursor: pointer;
    height: 170px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}
.upload-preview:hover {
    border-color: #007bff;
    transform: scale(1.02);
}

/* Image Preview */
.preview-img {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Video Preview */
.preview-video {
    max-height:150px;
    width: 100%;
    border-radius: 8px;
    background: #000;
}
.cursor{
    cursor: pointer;
}