body {
  background: radial-gradient(circle at 56%, #f5f5f5 0%, #f2f2f2 99%);
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  padding: 0;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

#searchBox {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #aaa;
}

.order-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.order-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.order-buttons button:hover {
  background-color: #0056b3;
}

.last-updated {
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  color: #555;
}

.attractions-list {
  width: 100%;
  max-width: 580px;
  margin: auto;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.attraction-item {
  display: flex;
  align-items: center;
  padding: 15px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
  background-color: #fff;
  border-left: 4px solid #fff;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}

.attraction-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  transition: width 0.3s ease;
}

.attraction-item:hover {
  color: #fff;
}

.attraction-item:hover:after {
  width: 100%;
  transition: width 0.3s ease;
}

.attraction-item.closed {
  border-left-color: #fa5437;
}

.attraction-item.closed:after {
  background: linear-gradient(102deg, #fa5437 0%, #ed4618 100%);
}

.attraction-item.open {
  border-left-color: #00cc88;
}

.attraction-item.open:after {
  background: linear-gradient(102deg, #00cc88 0%, #1096b7 100%);
}

.attraction-item .logo-thumbnail {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.attraction-item.closed .logo-thumbnail {
  border-color: #fa5437;
}

.attraction-item.open .logo-thumbnail {
  border-color: #00cc88;
}

.attraction-item:hover .logo-thumbnail {
  border-color: #fff;
}

.attraction-item h3 {
  font-weight: bold;
  font-size: 14px;
  position: relative;
  z-index: 1;
  line-height: 24px;
  margin: 0 0 5px;
  width: 210px;
}

.attraction-item p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  opacity: 0.7;
  margin: 5px 0;
}

.attraction-item .wait-time {
  margin-left: auto;
}

/* Area-specific hover colors */
.attraction-item.area-1:hover:after {
  background: linear-gradient(102deg, #ff5733 0%, #ff8d1a 100%);
}

.attraction-item.area-2:hover:after {
  background: linear-gradient(102deg, #33ff57 0%, #1aff8d 100%);
}

.attraction-item.area-3:hover:after {
  background: linear-gradient(102deg, #3357ff 0%, #1a8dff 100%);
}

.attraction-item.area-15:hover:after,
.attraction-item.area-15 .logo-thumbnail {
  background: rgb(27, 48, 233);
}

.attraction-item.area-9:hover:after,
.attraction-item.area-9 .logo-thumbnail {
  background: rgb(233, 27, 27);
}

.attraction-item.area-32:hover:after,
.attraction-item.area-32 .logo-thumbnail {
  background: rgb(227, 33, 25);
}

.attraction-item.area-18:hover:after,
.attraction-item.area-18 .logo-thumbnail {
  background: rgb(227, 133, 25);
}

.attraction-item.area-24:hover:after,
.attraction-item.area-24 .logo-thumbnail {
  background: rgb(253, 215, 4);
}

.attraction-item.area-12:hover:after,
.attraction-item.area-12 .logo-thumbnail {
  background: rgb(107, 91, 0);
}

.attraction-item.area-21:hover:after,
.attraction-item.area-21 .logo-thumbnail {
  background: rgb(0, 107, 36);
}

.attraction-item.area-28:hover:after,
.attraction-item.area-28 .logo-thumbnail {
  background: rgb(0, 139, 219);
}

.subtitle.wait-time {
    font-size: 18px;
}

.logo-thumbnail {
z-index: 5;
}
/* Add more area-specific styles as needed */
