/**
 * Style dla bloków statusu otwarcia restauracji.
 */

.restaurant-block-opening-status {
    margin: 20px 0;
}

.restaurant-status {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-text {
    font-weight: bold;
}

/* Style dla różnych statusów */
.restaurant-status-open .status-text {
    color: #2e7d32;
}

.restaurant-status-closing_soon .status-text {
    color: #e65100;
}

.restaurant-status-closed .status-text {
    color: #b71c1c;
}

/* Tabela godzin otwarcia */
.restaurant-opening-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.restaurant-opening-hours-table th,
.restaurant-opening-hours-table td {
    padding: 8px 10px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.restaurant-opening-hours-table th {
    font-weight: bold;
    width: 40%;
}
