/* Kontener godzin otwarcia */

.opening-hours-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 400px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.day-row:last-child { border-bottom: none; }

.day-name {
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
}

.day-hours {
    color: #666;
}

.status-badge {
    padding: 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 15px;
    border: 1px solid #eee;
    display: flex;
    justify-content: center;
}

.status-open { 
    background: #e6fcf5; 
    color: #0ca678; 
}

.status-open::before {
    content: '';
    width: 15px;
    height: 15px;
    background: #40c057;
    border-radius: 50%;
    margin: 2px 8px;
    box-shadow: 0 0 0 rgba(64, 192, 87, 0.4);
    animation: pulse 2s infinite;
}

.status-closed { 
    background: #fff5f5; 
    color: #f03e3e; 
}

.day-row.is-today {
    background: #f8f9fa;
    margin: 0 -10px;
    padding: 10px;
    border-radius: 8px;
    color: #007bff;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(64, 192, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(64, 192, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(64, 192, 87, 0); }
}