.restaurant-hours {
    margin: 40px auto;
    max-width: 800px;
    background: linear-gradient(135deg, #f3e7e9 0%, #e3eeff 100%);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.restaurant-hours h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

/* The unified white container holding all entries */
.hours-container {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

/* Header row styling without background color */
.hours-header {
    display: flex;
    padding: 20px 15px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.hours-header .header-item {
    flex: 1;
    text-align: center;
}

/* Each day entry styling */
.day-entry {
    display: flex;
    padding: 20px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day-entry .entry-item {
    flex: 1;
    text-align: center;
}

/* Styling for the Break column with mild red text */
.day-entry .entry-item:nth-child(3) {
    color: #f28b82;
}

/* Today's row styling: zoom-in effect, pop-out block, bold text, and increased font size */
.today-highlight {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 1.2rem;
}