/* Business Hours Styling */
.wpo-business-hours-section {
    background-color: #f8f9fa;
    position: relative;
}

.business-hours-content {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #144754;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.hours-item.emergency {
    background: linear-gradient(135deg, #ff7236, #ff8c5a);
    color: white;
    border-left-color: #ff7236;
}

.hours-item.emergency:hover {
    background: linear-gradient(135deg, #e65a1f, #ff7236);
}

.hours-item .day {
    font-weight: 600;
    font-size: 16px;
    color: #144754;
}

.hours-item.emergency .day {
    color: white;
}

.hours-item .time {
    font-weight: 500;
    color: #666;
}

.hours-item.emergency .time {
    color: white;
    font-weight: 600;
}

/* Footer business hours styling */
.widget.link-widget ul li {
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.6;
}

.widget.link-widget ul li strong {
    color: #ff7236;
    font-weight: 600;
}

/* Contact page business hours styling */
.office-info-item .office-info-text p strong {
    color: #ff7236;
    display: block;
    margin-top: 5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .business-hours-content {
        margin-top: 30px;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .hours-item .day,
    .hours-item .time {
        font-size: 14px;
    }
}
