/* ============================================================
   Otevírací doba v2 – Widget styles
   (barvy jsou dodávány inline přes PHP/wp_add_inline_style)
   ============================================================ */

@keyframes od-pulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(34,197,94,.50), 0 0 0 0 rgba(34,197,94,.25);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(34,197,94,.12), 0 0 0 12px rgba(34,197,94,0);
    }
}

.od-widget {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-family: inherit;
    line-height: 1;
    transition: background .3s, border-color .3s;
}

.od-widget__dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #d1d5db;
    transition: background .3s;
}

.od-widget__dot--open {
    animation: od-pulse 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .od-widget__dot--open { animation: none; }
}

.od-widget__label {
    font-size: 15px;
    font-weight: 600;
    transition: color .3s;
}

.od-widget__sublabel {
    font-size: 13px;
    transition: color .3s;
}
