/* Minimal, calm, contained */

.av-status-wrap{
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.av-status-btn{
  width: 100%;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.12);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

/* AVAILABLE NOW */
.av-status-btn.is-now{
  background: #f4faf6;      /* very soft green tint */
  color: #1f3a2c;
}

/* AVAILABLE AT TIME */
.av-status-btn.is-later{
  background: #f7f7f7;      /* neutral light gray */
  color: #222;
}

/* NOT AVAILABLE */
.av-status-btn.is-unavailable{
  background: #f2f2f2;
  color: #555;
}

/* CLOSED */
.av-status-btn.is-closed{
  background: #ededed;
  color: #777;
}

/* subtle hover */
.av-status-btn:hover{
  background: #ffffff;
}





/* Modal (only used for Available Now click) */
.av-modal-overlay{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.40);
  padding: 18px;
  z-index: 9999;
}
.av-modal-overlay.is-open{ display: flex; }

.av-modal{
  width: min(520px, 100%);
  background: rgba(255,255,255,0.96);
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 18px;
  text-align: left;
  position: relative;
}

.av-modal *,
.av-modal *::before,
.av-modal *::after {
  box-sizing: border-box;
}

.av-modal h3{
  margin: 0 30px 6px 0;
  font-size: 1.15rem;
}
.av-modal p{
  margin: 0 0 14px 0;
  opacity: 0.85;
}

.av-close{
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
}

/* Stack buttons vertically */
.av-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.av-action{
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.14);
  background: white;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.av-action:hover{
  background: #f6f6f6;
}