/* Announcement Bar Styles - Fixed height for consistency */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 5vh; */ /* Disabled - causes inconsistent spacing */
    height: 36px; /* Fixed desktop height for consistency */
    background-color: var(--top-bar-bg-color);
    color: var(--top-bar-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.announcement-bar p {
    margin: 0;
    padding: 0;
    opacity: 0.9;
}
