.schedule-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(235, 235, 235, 0.7);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-popup {
  position: relative;
  width: 600px;
  height: auto;
  padding: 30px;
  background: #fff;
  color: #000;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  z-index: 1000;
}

.schedule-popup-content {
  position: relative;
}

.schedule-popup-title {
  font-size: 18px;
  color: #005e95;
  font-weight: bold;
  padding-bottom: 20px;
  text-align: center;
}

.schedule-popup li {
  list-style: none;
  margin-bottom: 5px;
}

.schedule-popup-close {
  position: absolute;
  font-size: 20px;
  right: -10px;
  top: -15px;
  cursor: pointer;
  font-weight: bold;
}

@media (max-width: 600px) {
  .schedule-popup {
    width: 90%;
  }
}