.scheduler-body {
  background: #f4f5f7;
  min-height: 100vh;
}

/* Step indicator */
.step-indicator {
  max-width: 480px;
  margin: 0 auto 2rem;
}
.step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}
.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dee2e6;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}
.step-label {
  font-size: 0.7rem;
  color: #6c757d;
  margin-top: 6px;
  text-align: center;
/*  max-width: 90px;*/
}
.step-line {
  flex: 1 1 auto;
  height: 2px;
  background: #dee2e6;
  margin: 0 -40px;
  margin-bottom: 22px;
  min-width: 24px;
  z-index: -100;.step-line
}
@media (max-width: 575px) {
    .step-line {
      margin-bottom: 0px;
      margin: 0 -14px;
    }
}
.step-node.is-complete .step-circle {
  background: #30598c;
  border-color: #30598c;
  color: #fff;
}
.step-node.is-active .step-circle {
  background: #30598c;
  border-color: #30598c;
  color: #fff;
}
.step-node.is-active .step-label,
.step-node.is-complete .step-label {
  color: #212529;
  font-weight: 600;
}
.step-node.is-complete ~ .step-line,
.step-line.is-complete {
  background: #30598c;
}

/* Property / appointment type option cards */
.property-option, .type-option {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.property-option:hover, .type-option:hover {
  border-color: #30598c;
}
.property-option input:checked ~ *,
.type-option input:checked ~ * {
  color: inherit;
}
.property-option:has(input:checked),
.type-option:has(input:checked) {
  border-color: #30598c;
  background: #e7f1ff;
}
.property-option input, .type-option input {
  flex-shrink: 0;
}
.property-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  font-size: 22px;
  color: #adb5bd;
}
.property-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.type-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: #495057;
}

/* Calendar */
.calendar-table {
  border-collapse: separate;
  border-spacing: 4px;
}
.calendar-table th {
  text-align: center;
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 600;
  padding-bottom: 4px;
}
.calendar-table td {
  text-align: center;
  padding: 0;
  vertical-align: middle;
}
.calendar-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 34px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
  font-size: 0.85rem;
  color: #adb5bd;
}
.calendar-day.is-empty { visibility: hidden; }
.calendar-day.is-open {
  cursor: pointer;
  color: #212529;
  border-color: #dee2e6;
  background: #fff;
}
.calendar-day.is-open:hover {
  border-color: #30598c;
  background: #e7f1ff;
}
.calendar-day.is-selected {
  background: #30598c !important;
  border-color: #30598c !important;
  color: #fff !important;
}

.slot-btn {
  text-align: left;
  padding: 10px 14px;
}
.slot-btn.active {
  background: #30598c;
  color: #fff;
  border-color: #30598c;
}

/* Confirmation / manage detail cards */
.confirmation-icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background: #d1e7dd;
  color: #0f5132;
  font-size: 26px;
  margin: 0 auto;
}
.details-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 14px 16px;
}
.detail-row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
}
.detail-row i {
  color: #6c757d;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.detail-row + .detail-row {
  border-top: 1px solid #e9ecef;
}
.status-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-scheduled, .status-confirmed { background: #d1e7dd; color: #0f5132; }
.status-cancelled { background: #f8d7da; color: #842029; }
.status-completed { background: #e2e3e5; color: #41464b; }

@media (max-width: 575.98px) {
  .step-label { display: none; }
}
.brand-accent-1 {
  -webkit-text-stroke: 0.25px #30598c; /* Used where supported */
/*  
  text-shadow:
      -0.25px -0.25px 0 #30598c,
      0px -0.25px 0 #30598c,
      0.25px -0.25px 0 #30598c,
      -0.25px  0px 0 #30598c,
      0.25px  0px 0 #30598c,
      -0.25px  0.25px 0 #30598c,
      0px  0.25px 0 #30598c,
      0.25px  0.25px 0 #30598c;
*/  
  text-shadow:
    -0.25px 0 0 #30598c,
     0.25px 0 0 #30598c,
     0 -0.25px 0 #30598c,
     0 0.25px 0 #30598c;
  color: #f2ab27;
}
.text-primary {
  color: #30598c !important;
}

.btn-outline-primary {
    color: #30598c;
    border: 1px solid #30598c;
}
.btn.disabled, .btn:disabled, fieldset:disabled {
    color: #fff;
    border: 1px solid #4bb543;
    background: #4bb543;
}
.btn:hover, .btn-reg:hover {
    color: #fff !important;
    border: 1px solid #30598c !important;
    background: #30598c !important;
}
.btn-white-red {
    color: #dc3545;
    border: 1px solid #dc3545;
    background: #fff;
}
.btn-white-red:hover {
    color: #fff;
    border: 1px solid #dc3545 !important;
    background: #dc3545 !important;
}
.btn-white-navy {
  color: #30598c !important;
  border: 1px solid #30598c !important;
  background: #fff !important;
}
.btn-white-navy:hover {
  color: #fff !important;
  border: 1px solid #30598c !important;
  background: #30598c !important;
}
.btn-green-white {
  color: #fff !important;
  border: 1px solid #4bb543 !important;
  background: #4bb543 !important;
}
.btn-green-white:hover {
    color: #4bb543 !important;
    border: 1px solid #4bb543 !important;
    background: #fff !important;
}
.btn-white-green {
  color: #4bb543 !important;
  border: 1px solid #4bb543 !important;
  background: #fff !important;
}
.btn-white-green:hover {
    color: #fff !important;
    border: 1px solid #4bb543 !important;
    background: #4bb543 !important;
}

/* CSS for auto_logoff script */
/* Customizes the dialog box */
.ui-widget-header {
  border: 1px solid #30598c !important;
  background: #30598c !important;
  color: #fff !important;
}

/* Keeps dialog box centered even while scrollint */
/* Can be removed since scrolling is disabled in jquery-idleTimeout.js */
.ui-dialog {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}
.ui-widget-overlay {
  background: #000 !important;
  opacity: .5 !important;
  -ms-filter: Alpha(Opacity=50) !important;
}
/* CSS for auto_logoff script */

/* Plain-Unicode icon glyphs (see icon() helper) - no font/CDN dependency */
.icon-glyph {
  display: inline-block;
  line-height: 1;
}
/* request.php page placeholders */
.form-control::placeholder {
  opacity: 0.5;
  /*color: #ccc;*/
}
