/* Instructor Page Styles */

/* Header Section */
.instructor-header {
    background: linear-gradient(135deg, #0f4d2e 0%, #0056b3 100%);
}

/* Profile Image */
.instructor-avatar {
    transition: all 0.3s ease;
}

.instructor-avatar:hover {
    transform: scale(1.05);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Course Cards */
.course-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.course-card img {
    transition: all 0.3s ease;
}

.course-card:hover img {
    transform: scale(1.05);
}

/* Buttons */
.btn {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .instructor-header {
        text-align: center;
    }
    
    .instructor-avatar {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 576px) {
    .instructor-avatar {
        width: 120px !important;
        height: 120px !important;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

svg.svg-inline--fa.fa-award.fa-3x.text-warning.mb-2 {
    width: 47px;
}