/**
 * Theme Banner Styles
 * 
 * Styles for the theme banner component that can be displayed at the top of pages
 */

.theme-banner {
    background-color: var(--banner-color, #0073aa);
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-weight: bold;
    position: relative;
    z-index: 1000;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
}

.theme-banner a {
    color: white;
    text-decoration: none;
    display: block;
}

.theme-banner a:hover {
    text-decoration: underline;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .theme-banner {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .theme-banner {
        padding: 6px 10px;
        font-size: 12px;
    }
}
