
/* Updated Toggler Button */
.navbar-toggler { 
    display: block !important; 
    padding: 8px;
    border: 1px solid #ffffff;
    background: transparent;
    cursor: pointer;
    border-radius: 4px;
}

/* Fixed Pixel Sizing for Clean Lines */
.custom-hamburger span {
    display: block;
    width: 24px;       /* Changed from 5vw to fixed width */
    height: 3px;
    margin: 4px 0;     /* Balanced spacing */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, pink, transparent 75%);
    outline: none;
}

/* Dropdown Menu Container (Appears when toggled) */
.header-dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Sits directly beneath the header */
    right: 0;
    width: 200px;
    background-color: rgba(54, 69, 79, 0.95); /* Matches your Charcoal color theme */
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    z-index: 1010;
}

/* Bootstrap class utility to show the content */
.header-dropdown-menu.show {
    display: block;
}

/* Dropdown link styling */
.header-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.header-dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/* Profile image rendering dimensions */
.profile-image-dropdown {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border: 2px solid var(--highlight, #36454F);
}

/* Styling for the greeting text */
.profile-greeting {
    font-size: 14px;
    line-height: 1.3;
}

/* Interactive list styling inside the card container */
.header-dropdown-menu .list-group-item {
    background: transparent;
    font-size: 14px;
    color: #444444;
    border-color: rgba(0, 0, 0, 0.06);
}

.header-dropdown-menu .list-group-item:hover {
    background-color: rgba(54, 69, 79, 0.05); /* Charcoal hover hint accent */
    color: #000000;
}

