.header-container {
    width: 100%;
}

.header-container .container-fluid {
    padding: 10px;
}

.navbar-nav .nav-item {
    white-space: nowrap;
    
    .nav-link {
        padding-inline: var(--space-lg);
        gap: 0;
    }

    .nav-link:not(.button) {
        color: var(--color-text-secondary);
        padding-inline: var(--space-sm);
        font-weight: 600;
        border-block-end: 2px solid transparent;
        transition: color 0.2s ease, border-color 0.2s ease;
    }

}

.navbar-nav .nav-item .nav-link:not(.button):hover {
    color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.navbar-nav .nav-item .nav-link:not(.button):active {
    color: var(--color-accent-hover);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
}

.waitlist-banner {
    background-color: #60c199;
    color: white;
    text-align: center;
    padding: 10px 0;
    overflow: hidden;
    max-height: 45px;
    transition: max-height 0.3s ease-in-out;
}

.waitlist-banner .collapse-arrow {
    cursor: pointer;
}

.waitlist-banner .collapse-arrow i {
    color: white;
}

.waitlist-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}
.waitlist-banner p {
    padding: 0 30px;
    margin: 0px;
}
.launchlist-widget {
    height: 65px;
}

.waitlist-banner.expanded {
    max-height: 120px;
}

.waitlist-banner .launchlist-widget {
    visibility: hidden;
}

.waitlist-banner.expanded .launchlist-widget {
    visibility: visible;
}

@media (max-width: 425px) {
    .waitlist-banner {
        max-height: 55px;
        overflow: hidden;
    }

    .waitlist-banner.expanded {
        max-height: 250px;
    }

    .launchlist-widget {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .waitlist-banner {
        font-size: 0.9rem;
        padding: 8px 0;
        max-height: 60px;
    }
    .waitlist-banner p {
        padding-bottom: 10px;
    }

    .waitlist-banner.expanded p {
        padding-bottom: 0px;
    }
}

.announcement-banner {
    background: #60C199;
    color: white;
    padding: 8px 0;
    text-align: center;
    font-weight: 500;
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.announcement-content svg {
    color: white;
}

@media (max-width: 768px) {
    .announcement-banner {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .announcement-banner {
        font-size: 0.8rem;
        padding: 4px 0;
    }
}
