﻿.nav-panel {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.nav-header {
    background-color: #00b050;
    color: white;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

    .nav-header h4 {
        margin: 0;
        font-weight: 600;
    }

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .nav-link:hover {
        background-color: #f5f8ff;
        color: #1a4fb0;
        transform: translateX(5px);
    }

.nav-icon {
    color: #1a4fb0;
    margin-right: 12px;
    font-size: 14px;
}

.nav-text {
    font-weight: 500;
}

.quick-stats {
    padding: 15px 20px;
    background-color: #f5f8ff;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a4fb0;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

