:root {
    --staging-banner-height: 40px;
}

.staging-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--staging-banner-height);
    z-index: 2000;
    background: #ffc107;
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 16px;
    border-bottom: 2px solid #b58900;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staging-banner__icon {
    margin-right: 8px;
    font-size: 16px;
}

body:has(> .staging-banner) .app-header {
    top: var(--staging-banner-height);
}

body:has(> .staging-banner) .app-sidebar {
    top: calc(60px + var(--staging-banner-height));
}

body:has(> .staging-banner) .app {
    padding-top: calc(3.75rem + var(--staging-banner-height));
}

@media (max-width: 600px) {
    :root {
        --staging-banner-height: 32px;
    }

    .staging-banner {
        font-size: 12px;
        padding: 6px 12px;
    }
}
