<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Mobile Hamburger Container - Always Visible */
.mobile-hamburger {
    display: flex;
    width: 100%;
    background: #1C375B; /* Always blue */
    align-items: center;
    justify-content: flex-end; /* Align items */
    z-index: 1000;
    padding: 0.5rem 1rem; /* Padding */
    gap: 10px; /* Space between text and icon */
}

/* Menu Text (Aligned next to the button) */
.menu-text {
    color: white;
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

/* Hamburger Button */
.mobile-hamburger button {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 45px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

/* Hamburger Lines */
.mobile-hamburger .bar {
    display: block;
    width: 35px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

/* Set transform origin to center for proper rotation */
.mobile-hamburger .bar:nth-child(1),
.mobile-hamburger .bar:nth-child(3) {
    transform-origin: center;
}

/* When Menu is Open - Turn into an 'X' */
.mobile-hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(11px, 11px);
    color: black;
    z-index: 1002;
}

.mobile-hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Hide middle bar */
}

.mobile-hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(11px, -11px);
    color: black;
    z-index: 1002;
}

/* Hide the hamburger button and text on large screens */
@media (min-width: 768px) {
    .menu-text, 
    .mobile-hamburger button {
        display: none;
    }

    /* Keep the blue bar but center align content */
    .mobile-hamburger {
        justify-content: center;
    }
}
</pre></body></html>