body {
    font-family: Arial, Helvetica, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0px;
    background-color: #f4f4f4;
    color: #333;
}

.container01 {
    max-width: 98%;
    margin: 0 auto;
    background-color: #fff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: left;
    font-size: 4em;
    font-weight: bold;
    color: #557bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.todayDate {
    text-align: center;
    font-size: 5em;
    font-weight: bold;
    color: #000000;
    padding-bottom: 10px;
}

.event-ul {
    list-style: none;
    padding: 0;
}

.event-item1 {
    background-color: #eeeeee;
    border: 1px solid #000001;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.event-item2 {
    background-color: #d1defc;
    border: 1px solid #0a1725;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
}

h1a {
    color: #000000;
    margin-top: 0;
    font-weight: bold;
    font-size: 3em;
}

.event-item h2a {
    color: #000000;
    margin-top: 0;
    font-size: 3em;
}

.event-time {
    font-size: 3em;
    color: #000000;
}

.event-description {
    font-style: italic;
    font-size: 3em;
    color: #000000;
}

.error-message {
    color: red;
    font-weight: bold;
}

/* ... (Existing styles) ... */

/* New Style for the Meal Countdown */
#meal-countdown {
    text-align: center;
    animation: blinker 2.5s linear infinite;
    font-size: 4.5em; /* Slightly smaller than the main clock */
    font-weight: bold;
    color: #ff5722; /* A vibrant color to draw attention */
    padding-bottom: 10px;
    min-height: 40px; /* Reserve space so content doesn't jump */
}

@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}

/* ... (Existing styles) ... */