/* Popup */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.popup-card {
  background: var(--card);
  border-radius: 22px;
  padding: 22px;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  text-align: center;
}

.popup-card h2 {
  margin-top: 6px;
}

.popup-text {
  color: var(--muted);
  margin: 12px 0;
}

.popup-times {
  background: rgba(201,162,109,.12);
  border-radius: 14px;
  padding: 12px;
  margin: 14px 0;
  font-weight: 700;
}

.popup-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.popup-buttons {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 26px;
  background: none;
  border: 0;
  cursor: pointer;
}