body {
    font-family: "Vazir", sans-serif;
}

.sidebar .nav-link.active {
    background-color: #f0f8ff;
    font-weight: bold;
    border-radius: 0.4rem;
}

.welcome-page {
    background: linear-gradient(135deg, #f8faff, #eef3ff);
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f9f9fc;
}

.sidebar {
    background: linear-gradient(to bottom, #f0f4ff, #e0e9ff);
    border-left: 5px solid #4e7bd9;
}

    .sidebar .nav-link {
        color: #3b3b3b;
        margin-bottom: 0.5rem;
        padding: 0.6rem 1rem;
        border-radius: 1rem;
        transition: 0.2s;
    }

        .sidebar .nav-link:hover,
        .sidebar .nav-link.active {
            background-color: #d6e4ff;
            color: #1a2e66;
            font-weight: 600;
        }

.topbar {
    background-color: white;
    border-bottom: 1px solid #ddd;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

footer {
    font-size: 0.85rem;
    color: #888;
    padding-top: 2rem;
}

.icon {
    font-size: 1.2rem;
    color: #4e7bd9;
}
