@charset "UTF-8";
/* ==================================================
   BOOKING CALENDAR – FINAL SCSS
   ================================================== */
/* ===============================
   Variables
   =============================== */
/* ===============================
   Root container
   =============================== */
.sbc-root {
  padding: 18px;
  border: 1px solid rgba(74, 63, 54, 0.3);
}

/* ===============================
   Header
   =============================== */
.sbc-cal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.sbc-cal-header .sbc-cal-title {
  font-size: 16px;
  font-weight: 400;
}
.sbc-cal-header .sbc-cal-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.sbc-cal-header .sbc-cal-nav .sbc-btn {
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
}
.sbc-cal-header .sbc-cal-nav .sbc-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===============================
   Weekdays
   =============================== */
.sbc-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 12px;
  margin-bottom: 6px;
}
.sbc-weekdays div {
  text-align: center;
  padding: 6px 0;
  font-weight: 500;
}

/* ===============================
   Days grid
   =============================== */
.sbc-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

/* ===============================
   Day cell – perfect square
   =============================== */
.sbc-day {
  aspect-ratio: 1/1;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sbc-day.is-clickable {
  cursor: pointer;
}
.sbc-day.is-empty {
  visibility: hidden;
  border: 1px solid transparent;
}
.sbc-day::before {
  z-index: -1;
}
.sbc-day {
  z-index: 1;
}

/* ===============================
   Status styles
   =============================== */
/* Available */
.sbc-status-1 {
  background: linear-gradient(135deg, var(--Blue-Stone, #006265) 25.08%, #00c5cb 130.31%);
}

/* Booked (Morning) – diagonal half */
.sbc-status-2 {
  background: linear-gradient(135deg, var(--Blue-Stone, #006265) 25.08%, #00c5cb 130.31%);
}
.sbc-status-2::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Gradient layer + diagonal mask */
  background: linear-gradient(134deg, #f22c2f 2.19%, #fff 125.96%), linear-gradient(135deg, #000 0 50%, transparent 50% 100%);
  background-blend-mode: normal;
  -webkit-mask-image: linear-gradient(135deg, #000 0 50%, transparent 50% 100%);
  mask-image: linear-gradient(135deg, #000 0 50%, transparent 50% 100%);
}

/* Booked (Evening) – opposite diagonal */
.sbc-status-3 {
  background: linear-gradient(135deg, var(--Blue-Stone, #006265) 25.08%, #00c5cb 130.31%);
}
.sbc-status-3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(315deg, #ff8f8f 0 50%, transparent 50% 100%);
}

/* Booked full day */
.sbc-status-4 {
  background: linear-gradient(134deg, #f22c2f 2.19%, #fff 125.96%);
}

/* ===============================
   Legend
   =============================== */
.sbc-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 36px;
  font-size: 12px;
  color: #333;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sbc-legend .sbc-legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

/* Legend swatches */
.sbc-swatch {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.sbc-swatch.s1 {
  background: linear-gradient(135deg, var(--Blue-Stone, #006265) 25.08%, #00c5cb 130.31%);
}
.sbc-swatch.s2 {
  background: linear-gradient(135deg, var(--Blue-Stone, #006265) 25.08%, #00c5cb 130.31%);
}
.sbc-swatch.s2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8f8f 0 50%, transparent 50% 100%);
}
.sbc-swatch.s3 {
  background: linear-gradient(135deg, var(--Blue-Stone, #006265) 25.08%, #00c5cb 130.31%);
}
.sbc-swatch.s3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(315deg, #ff8f8f 0 50%, transparent 50% 100%);
}
.sbc-swatch.s4 {
  background: linear-gradient(134deg, #f22c2f 2.19%, #fff 125.96%);
}

/* ===============================
   Admin modal
   =============================== */
.sbc-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
}

.sbc-modal {
  width: 360px;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
}
.sbc-modal h3 {
  margin: 0 0 10px;
  font-size: 15px;
}
.sbc-modal label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}
.sbc-modal select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.sbc-modal .sbc-modal-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

@media only screen and (min-width: 1024px) {
  .sbc-day {
    font-size: 1.0416666667vw;
  }
  .sbc-root {
    border: 0.0520833333vw solid rgba(74, 63, 54, 0.3);
    padding: 4.0625vw;
  }
  .sbc-root .sbc-cal-header {
    margin-bottom: 1.25vw;
  }
  .sbc-root .sbc-cal-header .sbc-cal-title {
    font-size: 1.25vw;
  }
  .sbc-root .sbc-cal-header .sbc-cal-nav .sbc-btn {
    font-size: 1.875vw;
  }
  .sbc-root .sbc-weekdays {
    margin-bottom: 1.5625vw;
  }
  .sbc-root .sbc-weekdays div {
    font-size: 1.0416666667vw;
  }
  .sbc-root .sbc-legend .sbc-legend-item {
    font-size: 0.8854166667vw;
  }
}
/* =====================================
   BACKEND (ADMIN) ONLY – CALENDAR SIZE
   ===================================== */
.sbc-root[data-mode=admin] {
  max-width: 20.8333333333vw;
  padding: 1.1458333333vw;
}/*# sourceMappingURL=main.css.map */