/* Working Hours Module - workinghours.css */

.wh-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    min-height: 48px;
    padding: 0.6rem 1rem;
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    z-index: 9999;
}

.wh-banner--hidden {
    display: none !important;
}

.wh-banner__message {
    flex: 1;
    text-align: center;
}

.wh-banner__close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    opacity: 0.8;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.wh-banner__close:hover,
.wh-banner__close:focus {
    opacity: 1;
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

@media (max-width: 480px) {
    .wh-banner {
        font-size: 0.9rem;
        min-height: 40px;
    }
}
