﻿/* Spacing helpers */
.nav-item-spacing {
    margin-right: 1.5rem;
}

/* Notification label */
.notif-label {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

/* Dropdown item layout */
.dropdown-item {
    display: flex !important;
    align-items: center !important;
}

/* Icons inside dropdowns */
.nav-mymuniicibid-icon {
    color: white !important;
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

/* Hover effect for dropdown icons */
.dropdown-menu .dropdown-item:hover .nav-mymuniicibid-icon,
.dropdown-menu .dropdown-item:focus .nav-mymuniicibid-icon {
    padding-bottom: 5px !important;
    color: #FFC637 !important;
}

/* Navbar base */
.navbar {
    background-color: #214964 !important;
}

/* Navbar links & icons */
.navbar-nav .nav-link,
.navbar-nav .nav-link i {
    color: white !important;
}

/* Dropdown menu container */
.dropdown-menu {
    background-color: #3586BB;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: none;
}

    /* Dropdown items and hover states */
    .dropdown-menu .dropdown-item,
    .dropdown-menu .dropdown-item i {
        color: white !important;
        transition: color 0.3s ease;
        padding-top: 5px;
        padding-bottom: 5px;
    }

        .dropdown-menu .dropdown-item:hover,
        .dropdown-menu .dropdown-item:focus {
            background-color: #214964 !important;
            color: #FFC637 !important;
        }

/* Dropdown section header */
.dropdown-header {
    color: white !important;
    font-weight: bold;
    font-size: 0.9rem;
    background-color: transparent;
    padding: 8px 16px;
}

/* Notification list items */
.nav-item {
    list-style: none;
    display: inline-block;
    margin: 0 8px;
    vertical-align: middle;
}

/* Notification button */
.notif-btn {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-top: 5px;
}

/* Circular icon container */
.circle-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    padding: 2px;
    margin-right: 8px;
}

/* Notification icon (svg/img) */
.notif-icon {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.notif-btn:hover .notif-icon {
    color: #FFC637 !important;
}

.notif-icon-svg {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.notif-btn:hover .notif-icon-svg {
    filter: invert(78%) sepia(90%) saturate(565%) hue-rotate(1deg) brightness(103%) contrast(97%);
}

/* Notification badge */
.notif-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #FFC637;
    color: black;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

/* User initials pill */
.initials-circle {
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 750;
    font-size: 15px;
    border: 1px solid #ccc;
    line-height: 1;
    margin-right: 6px;
}

/* Mobile sign-in button */
.btn-signin-mobile {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

    .btn-signin-mobile:hover {
        color: #FFC637;
        border-color: #FFC637;
    }

/* Create account button */
.btn-create-account {
    background-color: #FFC637;
    color: black;
    border: none;
    border-radius: 30px;
    padding: 6px 28px;
    transition: all 0.3s ease;
}

    .btn-create-account:hover {
        background-color: #e6b531;
    }

/* Scrollable dropdown */
.scrollable-dropdown {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Yellow CTA button */
.btn-yellow {
    background-color: #ffc107;
    color: #000;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    font-weight: normal;
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    line-height: 1.2;
}

    .btn-yellow:hover {
        background-color: #e6ac00;
        color: #000;
    }

/* Right aligned container */
.nav-right {
    display: flex;
    justify-content: flex-end;
}

/* Sell button (outline) */
.sell-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255,255,255,0.2);
}

/* Remove left gaps on nav list */
.navbar-nav {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.notif-item {
    margin-left: 0 !important;
}

/* Small "logged in as" label */
.small-login-label {
    font-size: 0.7rem;
}

/* Mobile Sign In button sizing previously inlined */
.btn-signin-mobile {
    max-width: 50%;
    margin-left: 0;
}

/* (Optional) If you want full-width Create Account on very small screens only
@media (max-width: 575.98px) {
  .btn-yellow.btn-block {
    width: 100%;
  }
}
*/