.dashboard-container-06 {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Sidebar Styles */
.sidebar-06 {
    width: 250px;
    background-color: #2D3748;
    color: #FFFFFF;
    padding: 1.5rem 0;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 100;
    transition: all 0.3s ease;
}

.logo-container-06 {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.logo-container-06 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4FD1C5;
}

.sidebar-nav-06 ul {
    list-style: none;
}

.nav-item-06 {
    margin-bottom: 0.25rem;
}

.nav-item-06 a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: #E2E8F0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-item-06 a i {
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.nav-item-06 a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item-06.active-06 a {
    background-color: rgba(79, 209, 197, 0.2);
    color: #4FD1C5;
    border-left: 4px solid #4FD1C5;
}

/* Mobile Navigation */
.mobile-nav-06 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #2D3748;
    padding: 1rem;
}

.mobile-header-06 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header-06 h2 {
    color: #4FD1C5;
    font-size: 1.25rem;
}

.menu-toggle-06 {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    cursor: pointer;
}

.mobile-nav-menu-06 {
    display: none;
    background-color: #2D3748;
    padding: 1rem 0;
}

.mobile-nav-menu-06.active {
    display: block;
}

.mobile-nav-menu-06 ul {
    list-style: none;
}

/* Main Content Area */
.main-content-06 {
    flex: 1;
    margin-left: 250px;
    padding: 2rem;
    transition: all 0.3s ease;
}

/* Welcome Header */
.welcome-header-06 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.welcome-text-06 h1 {
    font-size: 1.75rem;
    color: #1A202C;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.date-06 {
    color: #4A5568;
    font-size: 0.9rem;
}

.header-actions-06 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.notification-btn-06 {
    background: none;
    border: none;
    position: relative;
    font-size: 1.25rem;
    color: #4A5568;
    cursor: pointer;
}

.notification-badge-06 {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #E53E3E;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile-06 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E2E8F0;
}

/* Dashboard Metrics */
.dashboard-metrics-06 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card-06 {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.metric-card-06:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.metric-icon-06 {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
    color: white;
}

.active-plans-icon-06 {
    background-color: #3182CE;
}

.wallet-icon-06 {
    background-color: #4FD1C5;
}

.completed-icon-06 {
    background-color: #38A169;
}

.referral-icon-06 {
    background-color: #ECC94B;
}

.metric-info-06 h3 {
    font-size: 0.9rem;
    color: #4A5568;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.metric-value-06 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 0.25rem;
}

.metric-link-06 {
    font-size: 0.8rem;
    color: #3182CE;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.metric-link-06 i {
    font-size: 0.7rem;
}

/* Dashboard Content */
.dashboard-content-06 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-section-06 {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.section-header-06 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header-06 h2 {
    font-size: 1.25rem;
    color: #1A202C;
    font-weight: 600;
}

.view-all-06 {
    color: #3182CE;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Recent Activity Timeline */
.activity-timeline-06 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.activity-item-06 {
    display: flex;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.activity-item-06:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.activity-icon-06 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 1rem;
    color: #4fd2c3;
    flex-shrink: 0;
}

.activity-icon-06.completed-06 {
    background-color: #38A169;
}

.activity-icon-06.enrolled-06 {
    background-color: #3182CE;
}

.activity-icon-06.transaction-06 {
    background-color: #4FD1C5;
}

.activity-icon-06.certificate-06 {
    background-color: #ECC94B;
}

.activity-icon-06.referral-06 {
    background-color: #E53E3E;
}

.activity-details-06 p {
    margin-bottom: 0.25rem;
    color: #1A202C;
    font-size: 0.95rem;
}

.activity-time-06 {
    font-size: 0.8rem;
    color: #4A5568;
}

/* Enrolled Plans */
.courses-container-06 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.course-card-06 {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card-06:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.course-image-06 {
    position: relative;
    height: 140px;
}

.course-image-06 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge-06 {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #3182CE;
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-weight: 500;
}

.course-progress-06 {
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    height: 0;
}

.progress-circle-06 {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.circular-chart-06 {
    display: block;
    width: 100%;
    height: 100%;
}

.circle-bg-06 {
    fill: none;
    stroke: #E2E8F0;
    stroke-width: 2.8;
}

.circle-06 {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: #3182CE;
}

.percentage-06 {
    fill: #1A202C;
    font-size: 0.28rem;
    text-anchor: middle;
    font-weight: bold;
}

.course-details-06 {
    padding: 0 1.25rem 1.25rem;
    margin-top: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-details-06 h3 {
    font-size: 1.1rem;
    color: #1A202C;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.course-details-06 p {
    font-size: 0.85rem;
    color: #4A5568;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
}

.course-meta-06 {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #4A5568;
    margin-bottom: 1rem;
}

.continue-btn-06 {
    background-color: #3182CE;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: auto;
}

.continue-btn-06:hover {
    background-color: #2A69AC;
}

/* Dashboard Bottom Section */
.dashboard-bottom-06 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Quick Links */
.quick-links-grid-06 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-link-card-06 {
    background-color: #F7FAFC;
    border-radius: 8px;
    padding: 1.25rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.quick-link-card-06:hover {
    background-color: #EBF8FF;
    transform: translateY(-3px);
}

.quick-link-icon-06 {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    background-color: #3182CE;
}

.quick-link-card-06:nth-child(2) .quick-link-icon-06 {
    background-color: #4FD1C5;
}

.quick-link-card-06:nth-child(3) .quick-link-icon-06 {
    background-color: #ECC94B;
}

.quick-link-card-06:nth-child(4) .quick-link-icon-06 {
    background-color: #38A169;
}

.quick-link-card-06 span {
    color: #2D3748;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Notifications */
.notifications-list-06 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item-06 {
    display: flex;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.notification-item-06:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notification-icon-06 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 1rem;
    background-color: #EBF8FF;
    color: #3182CE;
    flex-shrink: 0;
}

.notification-content-06 p {
    margin-bottom: 0.25rem;
    color: #1A202C;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-time-06 {
    font-size: 0.8rem;
    color: #4A5568;
}

.notification-item-06.unread-06 p {
    font-weight: 600;
}

.notification-item-06.unread-06 .notification-icon-06 {
    background-color: #3182CE;
    color: white;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #F7FAFC;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #CBD5E0;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A0AEC0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .dashboard-metrics-06 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-container-06 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .sidebar-06 {
        width: 70px;
        padding: 1rem 0;
    }
    
    .logo-container-06 {
        padding: 0 0.5rem 1rem;
        text-align: center;
    }
    
    .logo-container-06 h2 {
        font-size: 0;
    }
    
    .logo-container-06 h2::first-letter {
        font-size: 1.5rem;
    }
    
    .nav-item-06 a span {
        display: none;
    }
    
    .nav-item-06 a {
        justify-content: center;
        padding: 0.75rem;
    }
    
    .nav-item-06 a i {
        margin-right: 0;
    }
    
    .main-content-06 {
        margin-left: 70px;
        padding: 1.5rem;
    }
    
    .dashboard-bottom-06 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sidebar-06 {
        display: none;
    }
    
    .mobile-nav-06 {
        display: block;
    }
    
    .main-content-06 {
        margin-left: 0;
        padding: 1rem;
        margin-top: 60px;
    }
    
    .dashboard-metrics-06 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .welcome-header-06 {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .header-actions-06 {
        width: 100%;
        justify-content: flex-end;
    }
    
    .courses-container-06 {
        grid-template-columns: 1fr;
    }
    
    .dashboard-section-06 {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .welcome-text-06 h1 {
        font-size: 1.5rem;
    }
    
    .metric-card-06 {
        padding: 1rem;
    }
    
    .quick-links-grid-06 {
        grid-template-columns: 1fr;
    }
}