.holiday-container {
  text-align: center;
  background-color: #F7FAFC;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 650px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.holiday-container:hover {
  background-color: #EDF2F7;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

#holiday-message-today {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

#holiday-message-upcoming {
  font-size: 18px;
  color: #555;
}

.upcoming-date {
  color: #d9534f;
  font-weight: bold;
}

.datecurrent {
  color: #008000;
}