body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  text-align: center;
  margin: 0;
  padding: 0;
  padding-left: 0px;
}

.container {
  max-width: 360px;
  margin-left: 0px;
  padding-left: 0px;
  margin-top: 50px;
}

.dropdown-container {
  position: relative;
}

.dropdown {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  border: none;
  outline: none;
  background: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ... (existing styles) ... */

.dropdown-content {
  display: none;  /* Set display to none by default */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  z-index: 1;
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
  background-color:#7A6666;
}

/* ... (existing styles) ... */


.open-dropdown .dropdown-content {
  display: block;
  background-color:#F7F3F5; /* Set background color to white when the dropdown is open */
}

.dropdown-item {
  padding-left:5px;
  padding: 5px;
  cursor: pointer;
}

.current-day {
  font-family: 'Times New Roman', Times, serif;
  color: red;
  margin-right: 5px;
}

.open-today {
  font-family: 'Times New Roman', Times, serif;
  font-size: 18px;
  margin-right: -30px;
}

.dropdown-icon {
  font-size: 14px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.contact-button {
  position: absolute;
  top: 100%; /* Position it below the dropdown */
  left: 0;
  width: 40%;
  margin-top: 20px;
  background-color: #B11E1E;
  /*alignment:center;*/
  font-family: 'Times New Roman', Times, serif;
  border-radius:50px;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.01s ease;
}

.open-dropdown .contact-button {
  transform: translateY(40px); /* Move the button down when the dropdown is open */
}
