body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  padding: 32px 24px;
  text-align: center;
}

@media (max-width: 700px) {
  body {
    padding: 8px;
  }
  .container {
    max-width: 98vw;
    margin: 12px auto;
    padding: 16px 6px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  h1 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }
  .subtitle {
    font-size: 1em;
    margin-bottom: 10px;
  }
  .date-select {
    font-size: 0.98em;
    max-width: 98vw;
    padding: 5px 8px;
  }
  .arrow-btn {
    width: 28px;
    height: 28px;
    font-size: 1em;
  }
  ul {
    font-size: 0.98em;
  }
  li {
    font-size: 1em;
    padding: 5px 0;
  }
}
h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 18px;
}
.menu-section {
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1.5px dashed #e0e0e0;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.menu-section:last-child {
  border-bottom: none;
}
.section-title {
  color: #27ae60;
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1.08em;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
li {
  padding: 7px 0;
  font-size: 1.05em;
  text-align: center;
}
li:last-child {
  border-bottom: none;
}
.bio {
  color: #27ae60;
  font-weight: bold;
}
.msc {
  color: #2980b9;
  font-weight: bold;
}
.local {
  color: #e67e22;
  font-weight: bold;
}
.subtitle {
  text-align: center;
  color: #888;
  font-size: 1.05em;
  margin-bottom: 18px;
}
.date-select {
  display: block;
  margin: 0 auto;
  font-size: 1em;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #2980b9;
  background: #f7f7f7;
  color: #2c3e50;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 70%;
  max-width: 220px;
  cursor: pointer;
}
.date-select:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 2px #27ae6033;
}
.arrow-btn {
  background: #2980b9;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.arrow-btn:focus, .arrow-btn:hover {
  background: #27ae60;
  outline: none;
}
