/* Pilot Beta Banner Styles */
#pilot-banner {
    position: relative;
    width: 100%;
    background-color: #FEF3C7;
    color: #92400E;
    font-size: 0.75rem;
    padding: 0.6rem 1rem;
    text-align: center;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    max-height: 100px;
    opacity: 1;
    overflow: hidden;
}

#pilot-banner.hidden {
    max-height: 0;
    opacity: 0;
    padding: 0 1rem;
}

#pilot-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #92400E;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pilot-banner-close:hover {
    opacity: 0.7;
}
