/* Local Business Opening Hours – frontend table styles */
.boh-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 2px;
    font-size: 14px;
}

.boh {
    font-size: 14px;
    font-weight: 500;
}

/* Zebra striping */
.boh-row:nth-child(even) {
    background: #f7f7f7;
}

.boh-row:nth-child(even):hover {
    background: #f0f0f0;
}

.boh-row:last-child {
    border-bottom: none;
}

.boh-days {
    font-weight: 700;
    color: #333333;
    font-size: 14px;
    min-width: 60%;
}

/* Default time styling */
.boh-time {
    color: #495057;
    padding: 4px 10px;
    font-weight: 500;
    white-space: nowrap;
}

/* Highlight current day row */
.boh-open-today .boh-time,
.boh-open-today .boh-days {
    color: green !important;
}

/* Error messages */
.boh-error {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    margin: 10px 0;
}

/* Smooth transitions */
.boh-container * {
    transition: all 0.2s ease-in-out;
}

/* Text helpers */
.boh-text {
    font-weight: 500;
}

.boh-text-status {
    color: #28a745;
}

.boh-text-error {
    color: #dc3545;
}

/* Compact status colors */
.boh-text-status_compact.boh-status-open {
    color: #2e7d32;
    font-weight: 600;
}

.boh-text-status_compact.boh-status-closed {
    color: #c62828;
    font-weight: 600;
}
