/* Navbar Styles */

/* Header background color override */
.navbar-header {
    background-color: #262626;
}

/* Notification badge styles */
.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ef4444;
    color: white;
    font-size: 0.75rem;
    border-radius: 9999px;
    padding: 0 4px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Notification popup styles */
.notifications-popup {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    width: 320px;
    max-width: 90vw;
    max-height: 500px;
    overflow-y: auto;
    background-color: white;
    color: black;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    padding: 16px;
    display: block;
}

.notifications-popup.hidden {
    display: none !important;
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.mobile-menu-content {
    display: flex;
    justify-content: flex-end;
    padding: 24px;
}

.mobile-menu-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    color: white;
    padding: 24px;
}

/* Profile picture styles */
.profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    overflow: hidden;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Transition effects */
.hover-transition {
    transition: all 0.2s ease-in-out;
}

/* Responsive visibility */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Desktop profile section */
.desktop-only {
    display: flex;
}

/* Mobile menu visibility */
.mobile-only {
    display: flex;
}
