/* Enhanced dark mode header styles */

.dashboard-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #3b82f6;
}

.dashboard-header h1 {
    font-size: 2.2rem;
    margin: 0;
    color: #60a5fa !important;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.3);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.dashboard-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-top: 8px;
    margin-bottom: 0;
}

.section-header {
    position: relative;
    padding-left: 15px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.section-header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
    border-radius: 3px;
}

.sidebar-footer {
    background-color: #1a1a1a;
    padding: 15px;
    border-top: 1px solid #333;
}

.sidebar-footer p {
    color: #60a5fa;
    font-weight: 500;
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

/* Logo styling for dark mode */
.logo {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.logo i {
    font-size: 2rem;
    color: #60a5fa;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    color: #f8fafc !important;
}

/* Nav items */
.sidebar ul li {
    padding: 12px 20px;
    margin-bottom: 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sidebar ul li:hover, 
.sidebar ul li.active {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.sidebar ul li i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}
