/* Instructor Card refresh */
.instructor-card-simple {
    width: 100%;
    background: #fff;
    border: 1px solid #e9edf1;
    border-radius: 14px;
    padding: 16px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 0;
}

.instructor-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.instructor-avatar img {
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.instructor-card-simple .btn-primary {
    background-color: #0a672d;
    border-color: #0a672d;
    padding: 10px 20px;
    font-weight: 600;
}

.instructor-card-simple .btn-primary:hover {
    background-color: #075522;
    border-color: #075522;
}

.text-dark-blue {
    color: #1f2937 !important; /* slate-800 */
}

.text-gray {
    color: #6b7280 !important; /* gray-500 */
}

.font-16 {
    font-size: 16px;
}

.font-14 {
    font-size: 14px;
}
