.navbar {
    grid-area: header;
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, #f8f9fa 0%, #f3fdff 100%);
}

.profile-and-actions #avatar-image {
    border: 0;
    background: transparent;
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.nav-item {
    position: relative;
    min-width: 160px;
}

.nav-link {
    color: var(--color-dark) !important;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    padding: 10px 16px;
    text-align: center;
}

.nav-link:hover {
    color: var(--color-green) !important;
}

.nav-link.active {
    color: var(--color-white) !important;
    background-color: var(--color-black);
}


@media (max-width: 1023px) {
    .profile-and-actions {
        order: 3;
    }

    .nav-container {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin: 0;
    }

    .nav-container.mobile-active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 15px;
        width: 100%;
        border-radius: 0;
    }

    .nav-link i {
        width: 24px;
        margin-right: 10px;
    }
}



