/**
 * Frontend styly pro WP Business Hours - Theme-friendly verze
 * Minimální styling, dědicí barvy a fonty z tématu
 */

.business-hours-widget {
    font-family: inherit;
   /* margin: 20px 0; */ /* Odstraněno pro lepší integraci do layoutu */
}

/* Nadpis */
.business-hours-title {
    margin: 0 0 15px 0;
    font-size: 1.3em;
    font-weight: 600;
}

/* Tabulka otevírací doby */
.business-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.business-hours-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.business-hours-table tbody tr:last-child {
    border-bottom: none;
}

.business-hours-table td {
    padding: 12px 10px;
}

.business-hours-day {
    font-weight: 600;
    width: 40%;
}

.business-hours-time {
    text-align: right;
    opacity: 0.8;
}

/* Dnešní den zvýraznění - pouze border a font-weight */
.business-hours-today {
    border-left: 3px solid currentColor;
}

.business-hours-today .business-hours-day {
    font-weight: 700;
}

.today-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.75em;
    font-weight: normal;
}

/* Zavřeno */
.business-hours-closed {
    font-weight: 600;
    font-style: italic;
    opacity: 0.7;
}

/* Pauza */
.business-hours-break {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.9em;
    opacity: 0.7;
}

/* Datum */
.business-hours-date {
    font-size: 0.85em;
    opacity: 0.7;
}

/* Speciální dny */
.business-hours-special {
    margin-top: 25px;
}

.business-hours-special h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: 600;
}

/* Kompaktní verze pro topbar */
.business-hours-compact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* padding: 8px 15px; */
    border-radius: 4px;
    font-size: 0.9em;
}

.business-hours-status {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid currentColor;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85em;
    text-transform: uppercase;
}

.business-hours-status.open {
    /* Zelená barva pro otevřeno - ale jen text */
    color: #2d7a2e;
}

.business-hours-status.closed {
    /* Červená barva pro zavřeno - ale jen text */
    color: #c53030;
}

.business-hours-compact-time {
    font-weight: 500;
}

/* Status badge s indikátorem */
.business-hours-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid currentColor;
    border-radius: 5px;
    font-weight: 600;
}

.business-hours-status-badge.open {
    color: #2d7a2e;
}

.business-hours-status-badge.closed {
    color: #c53030;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid currentColor;
}

.business-hours-status-badge.open .status-indicator {
    background: currentColor;
}

.business-hours-status-badge.closed .status-indicator {
    background: transparent;
}

/* Další otevření */
.business-hours-next-opening {
    margin-top: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 0.9em;
}

/* Dnešní otevírací doba widget */
.business-hours-today-content {
    padding: 15px;
    border-left: 4px solid currentColor;
    border-radius: 4px;
}

.business-hours-day-name {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* Responzivita */
@media screen and (max-width: 600px) {
    .business-hours-table td {
        padding: 10px 8px;
        font-size: 0.95em;
    }

    .business-hours-day {
        width: 35%;
    }

    .business-hours-compact {
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }

    .today-badge {
        display: block;
        margin-left: 0;
        margin-top: 5px;
        width: fit-content;
    }
}
