.slms-student-dashboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.slms-dashboard-hero {
    background: linear-gradient(135deg, #1e73be, #2563eb);
    color: #fff;
    border-radius: 18px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.slms-dashboard-hero h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.slms-dashboard-hero p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.slms-dashboard-summary {
    display: flex;
    gap: 16px;
}

.slms-summary-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 14px;
    text-align: center;
    min-width: 120px;
}

.slms-summary-card strong {
    display: block;
    font-size: 28px;
    margin-bottom: 6px;
}

.slms-summary-card span {
    font-size: 13px;
}

.slms-dashboard-section {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.slms-dashboard-section-header {
    margin-bottom: 24px;
}

.slms-dashboard-section-header h3 {
    margin: 0;
    font-size: 24px;
}

.slms-student-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.slms-student-course-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.slms-student-course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.slms-student-course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.slms-student-course-body {
    padding: 20px;
}

.slms-student-course-body h4 {
    margin: 0 0 12px;
    font-size: 22px;
}

.slms-student-course-body h4 a {
    text-decoration: none;
    color: #111827;
}

.slms-student-course-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 18px;
}

.slms-course-progress-wrap {
    margin-bottom: 18px;
}

.slms-course-progress-bar {
    height: 10px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.slms-course-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e73be, #2563eb);
    border-radius: 999px;
}

.slms-course-progress-text {
    font-size: 13px;
    color: #6b7280;
}

.slms-course-continue-btn,
.slms-browse-courses-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: #1e73be;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.slms-course-continue-btn:hover,
.slms-browse-courses-btn:hover {
    background: #135e96;
    color: #fff;
}

.slms-dashboard-empty-state {
    text-align: center;
    padding: 50px 20px;
}

.slms-dashboard-empty-state h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.slms-dashboard-empty-state p {
    color: #6b7280;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .slms-dashboard-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .slms-dashboard-summary {
        width: 100%;
        justify-content: space-between;
    }
}