.business-hours-container {
background:#000!important;
}
.business-hours-title {
margin: 0 0 20px 0;
padding: 0;
font-size: 28px;
font-weight: 600;
color: #FF5C35!important;
text-align: center;
padding-bottom: 10px;
}
.business-hours-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.business-hours-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 15px;
background: #f9f9f9;
border-radius: 5px;
transition: all 0.3s ease;
}
.business-hours-row:hover {
background: #f0f0f0;
transform: translateX(5px);
}
.business-hours-row.today {
background: #e7f5ff;
border-left: 4px solid #7598B5;
font-weight: 600;
}
.business-hours-row.today:hover {
background: #d0ebff;
}
.business-hours-day {
font-size: 16px;
color: #4085B5!important;
font-weight: 500;
display: flex;
align-items: center;
gap: 10px;
}
.today-badge {
display: inline-block;
background: #0073aa;
color: #ffffff;
font-size: 11px;
font-weight: 600;
padding: 3px 8px;
border-radius: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.business-hours-time {
font-size: 15px;
color: #555;
font-weight: 500;
}
.business-hours-time.appointment {
color: #d63638;
font-style: italic;
font-weight: 600;
}
.business-hours-time.regular {
color: #2c7a2c;
} @media (max-width: 600px) {
.business-hours-container {
max-width: 100%;
padding: 15px;
}
.business-hours-title {
font-size: 20px;
}
.business-hours-row {
flex-direction: column;
align-items: flex-start;
gap: 5px;
padding: 10px 12px;
}
.business-hours-day,
.business-hours-time {
font-size: 14px;
}
.business-hours-row:hover {
transform: none;
}
} @media (prefers-color-scheme: dark) {
.business-hours-container {
background: #1e1e1e;
border-color: #3a3a3a;
}
.business-hours-title {
color: #e0e0e0;
border-bottom-color: #4a9eff;
}
.business-hours-row {
background: #2a2a2a;
}
.business-hours-row:hover {
background: #333333;
}
.business-hours-row.today {
background: #1a3a4a;
border-left-color: #4a9eff;
}
.business-hours-row.today:hover {
background: #234a5a;
}
.business-hours-day {
color: #e0e0e0;
}
.business-hours-time {
color: #b0b0b0;
}
.business-hours-time.appointment {
color: #ff6b6b;
}
.business-hours-time.regular {
color: #51cf66;
}
.today-badge {
background: #4a9eff;
}
}