/* Desktop Navbar Styles */
.desktop-navbar {
    background-color: white;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Navigation link base styles */
.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #868e96;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    user-select: none;
}

/* Navigation link hover state */
.nav-link:hover {
    background-color: #f1f3f5;
    color: #495057;
}

/* Active navigation link */
.nav-link.active {
    color: #228be6;
    background-color: #e7f5ff;
    font-weight: 600;
}

/* Active navigation link hover state */
.nav-link.active:hover {
    background-color: #d0ebff;
    color: #1c7ed6;
}

/* Profile icon hover effect */
.desktop-navbar .mantine-ActionIcon-root:hover {
    background-color: #f1f3f5;
}

/* Logout button modern styling */
.desktop-navbar .mantine-Button-root {
    transition: all 0.2s ease;
}

.desktop-navbar .mantine-Button-root:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
