/* =========================================
   BuzzBar - Clean MVP Layout
========================================= */

.buzzbar-banner {
    --buzzbar-bg-color: #2271b1;
    --buzzbar-text-color: #ffffff;
    --buzzbar-link-color: #ffffff;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9999;
    font-size: 19px;
    line-height: 1.5;
    background: var(--buzzbar-bg-color);
    color: var(--buzzbar-text-color);
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.buzzbar-banner:not(.buzzbar-hidden) {
    opacity: 1;
}

/* Top / Bottom */
.buzzbar-top { top: 0; }
.buzzbar-bottom { bottom: 0; }

/* Admin bar fix */
body.admin-bar .buzzbar-top { top: 32px; }
@media (max-width:782px){
    body.admin-bar .buzzbar-top { top: 46px; }
}

/* Inner container */
.buzzbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    /* position: relative; */
}

/* Content (RED area - Center) */
.buzzbar-content {
    text-align: center;
}

/* CTA wrapper (YELLOW area - Right of content) */
/* .buzzbar-cta {
    margin-left: 20px;
} */

/* .buzzbar-cta a {
    padding: 6px 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
} */

.buzzbar-cta {
    margin-left: 8px;
}

.buzzbar-cta a {
    color: var(--buzzbar-link-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0;
    border-radius: 0;
    display: inline;
}

.buzzbar-cta a:hover {
    opacity: 0.8;
}

/* Close button (BLUE area - Extreme right) */
.buzzbar-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    color: var(--buzzbar-text-color);
}

.buzzbar-close:hover {
    opacity: 1;
}

/* Hide animation */
.buzzbar-banner.buzzbar-hidden {
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.buzzbar-bottom.buzzbar-hidden {
    transform: translateY(100%);
}

