.dfsmp2-booking {
  --dfsmp2-border: #d7dde5;
  --dfsmp2-text: #172033;
  --dfsmp2-muted: #647084;
  --dfsmp2-bg: #f6f8fb;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
  color: var(--dfsmp2-text);
  font-family: inherit;
}

.dfsmp2-booking,
.dfsmp2-booking * {
  box-sizing: border-box;
}

.dfsmp2-panel {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.dfsmp2-header h2,
.dfsmp2-form h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.2;
}

.dfsmp2-header p {
  margin: 0 0 18px;
  color: var(--dfsmp2-muted);
}

.dfsmp2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dfsmp2-panel label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
}

.dfsmp2-panel input,
.dfsmp2-panel select,
.dfsmp2-panel textarea {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  padding: 9px 10px;
  font: inherit;
  color: var(--dfsmp2-text);
  background: #fff;
}

.dfsmp2-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.dfsmp2-slot {
  min-height: 44px;
  border: 1px solid #b9c4d3;
  border-radius: 6px;
  background: #fff;
  color: #172033;
  cursor: pointer;
  font-weight: 700;
}

.dfsmp2-slot:hover,
.dfsmp2-slot.is-selected {
  border-color: #0f6ab4;
  background: #eaf4ff;
  color: #0b4f86;
}

.dfsmp2-slot-proposal {
  grid-column: 1 / -1;
  text-align: left;
  padding: 12px 14px;
}

.dfsmp2-empty {
  grid-column: 1 / -1;
  background: var(--dfsmp2-bg);
  border: 1px dashed var(--dfsmp2-border);
  border-radius: 6px;
  padding: 14px;
  color: var(--dfsmp2-muted);
}

.dfsmp2-selected {
  margin: 10px 0 16px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #eef6ef;
  color: #1f5f2b;
  font-weight: 700;
}

.dfsmp2-required-note {
  margin: 2px 0 12px;
  color: var(--dfsmp2-muted);
  font-size: 13px;
}

.dfsmp2-full,
.dfsmp2-consent {
  margin-top: 14px;
}

.dfsmp2-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px !important;
  font-weight: 500 !important;
  color: var(--dfsmp2-muted);
}

.dfsmp2-consent input {
  min-height: auto;
  margin-top: 3px;
}

.dfsmp2-consent a {
  color: #134f7f;
  font-weight: 700;
}

.dfsmp2-modal-open {
  overflow: hidden;
}

.dfsmp2-privacy-modal[hidden] {
  display: none;
}

.dfsmp2-privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.dfsmp2-privacy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
}

.dfsmp2-privacy-dialog {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: min(82vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32);
  overflow: hidden;
}

.dfsmp2-privacy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--dfsmp2-border);
}

.dfsmp2-privacy-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  color: var(--dfsmp2-text);
}

.dfsmp2-privacy-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 50%;
  background: #fff;
  color: #172033;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.dfsmp2-privacy-close:hover,
.dfsmp2-privacy-close:focus {
  border-color: #134f7f;
  color: #134f7f;
}

.dfsmp2-privacy-content {
  overflow: auto;
  padding: 8px 22px 22px;
  color: var(--dfsmp2-muted);
  font-size: 14px;
  line-height: 1.65;
}

.dfsmp2-privacy-content p {
  margin: 12px 0 0;
}

.dfsmp2-file small {
  color: var(--dfsmp2-muted);
  font-size: 12px;
  font-weight: 500;
}

.dfsmp2-submit {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  border: 0;
  border-radius: 6px;
  background: #134f7f;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.dfsmp2-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.dfsmp2-message {
  min-height: 22px;
  margin-top: 12px;
  font-weight: 700;
}

.dfsmp2-message-success {
  color: #17632a;
}

.dfsmp2-message-error {
  color: #a32020;
}

.dfsmp2-message-info {
  color: #245b86;
}

.dfsmp2-hp {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
}

.dfsmp2-dashboard {
  --dfsmp2-border: #d7dde5;
  --dfsmp2-text: #172033;
  --dfsmp2-muted: #647084;
  --dfsmp2-bg: #f6f8fb;
  width: min(100%, 1480px);
  color: var(--dfsmp2-text);
  font-family: inherit;
}

.dfsmp2-dashboard,
.dfsmp2-dashboard * {
  box-sizing: border-box;
}

.dfsmp2-dashboard-login {
  max-width: 420px;
  color: var(--dfsmp2-text, #172033);
}

.dfsmp2-dashboard-login form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
}

.dfsmp2-dashboard-login h2 {
  margin: 0;
  font-size: 22px;
}

.dfsmp2-dashboard-login label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.dfsmp2-dashboard-login input {
  min-height: 42px;
  border: 1px solid #d7dde5;
  border-radius: 6px;
  padding: 9px 10px;
}

.dfsmp2-dashboard-login button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: #134f7f;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.dfsmp2-dashboard-login-error {
  margin: 0;
  color: #a32020;
  font-weight: 700;
}

.dfsmp2-dashboard-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.dfsmp2-dashboard-toolbar h2 {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1.15;
}

.dfsmp2-dashboard-toolbar p {
  margin: 0;
  color: var(--dfsmp2-muted);
}

.dfsmp2-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.dfsmp2-dashboard-actions a,
.dfsmp2-dashboard-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  background: #fff;
  color: var(--dfsmp2-text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.dfsmp2-dashboard-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  background: #fff;
}

.dfsmp2-dashboard-switch a {
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--dfsmp2-border);
}

.dfsmp2-dashboard-switch a:last-child {
  border-right: 0;
}

.dfsmp2-dashboard-switch a.is-active {
  background: #134f7f;
  color: #fff;
}

.dfsmp2-dashboard-actions > a.is-active {
  border-color: #134f7f;
  background: #eaf4ff;
  color: #0b4f86;
}

.dfsmp2-dashboard-actions > a.dfsmp2-nav-prev,
.dfsmp2-dashboard-actions > a.dfsmp2-nav-next {
  border-color: #d6b15c;
  background: #fff7df;
  color: #6f4d00;
}

.dfsmp2-dashboard-actions > a.dfsmp2-nav-today {
  border-color: #1f7a4d;
  background: #e9f7ef;
  color: #14532d;
}

.dfsmp2-dashboard-actions > a.dfsmp2-nav-prev:hover,
.dfsmp2-dashboard-actions > a.dfsmp2-nav-next:hover {
  background: #ffefbc;
}

.dfsmp2-dashboard-actions > a.dfsmp2-nav-today:hover {
  background: #d8f0e1;
}

.dfsmp2-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(176px, 1fr));
  gap: 8px;
  align-items: stretch;
}

.dfsmp2-week-schedule {
  display: grid;
  grid-template-columns: 62px repeat(7, minmax(145px, 1fr));
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.dfsmp2-week-corner,
.dfsmp2-week-head,
.dfsmp2-week-time,
.dfsmp2-week-cell {
  border-right: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
}

.dfsmp2-week-corner,
.dfsmp2-week-head {
  min-height: 44px;
  background: #f6f8fb;
}

.dfsmp2-week-head {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
  padding: 8px;
}

.dfsmp2-week-head strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.dfsmp2-week-head span {
  flex: 0 0 auto;
  color: var(--dfsmp2-muted);
  font-size: 12px;
}

.dfsmp2-week-head.is-today {
  background: #eaf4ff;
  color: #0b4f86;
}

.dfsmp2-week-time {
  padding: 8px 6px;
  background: #f6f8fb;
  color: #4d5a6b;
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.dfsmp2-week-cell {
  display: grid;
  align-content: start;
  gap: 3px;
  min-height: 52px;
  padding: 4px;
  overflow: hidden;
}

.dfsmp2-week-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px;
  align-items: center;
  min-height: 22px;
  padding: 3px 5px;
  border: 1px solid #cfe0f2;
  border-left: 3px solid #0f6ab4;
  border-radius: 5px;
  background: #f7fbff;
  color: var(--dfsmp2-text);
  font-size: 10px;
  line-height: 1.1;
  text-decoration: none;
}

.dfsmp2-week-chip:hover {
  border-color: #0f6ab4;
  background: #eaf4ff;
}

.dfsmp2-week-chip-cancelled {
  border-left-color: #a32020;
  background: #fff7f7;
  opacity: 0.72;
}

.dfsmp2-week-chip strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dfsmp2-week-chip span {
  color: var(--dfsmp2-muted);
  font-size: 9px;
  font-weight: 800;
}

.dfsmp2-dashboard-day {
  height: 360px;
  min-height: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.dfsmp2-dashboard-day.is-today,
.dfsmp2-dashboard-month-day.is-today {
  outline: 2px solid #134f7f;
  outline-offset: -2px;
}

.dfsmp2-dashboard-day.is-day-view {
  max-width: 980px;
  min-height: 460px;
}

.dfsmp2-dashboard-day header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid #eef1f5;
}

.dfsmp2-dashboard-empty {
  margin: 0;
  padding: 10px;
  border: 1px dashed var(--dfsmp2-border);
  border-radius: 6px;
  background: var(--dfsmp2-bg);
  color: var(--dfsmp2-muted);
}

.dfsmp2-dashboard-month {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.dfsmp2-dashboard-month-head {
  padding: 8px;
  border-right: 1px solid #eef1f5;
  border-bottom: 1px solid #dfe5ee;
  background: #f6f8fb;
  color: #4d5a6b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dfsmp2-dashboard-month-head:nth-child(7) {
  border-right: 0;
}

.dfsmp2-dashboard-month-day {
  height: 118px;
  min-height: 0;
  padding: 6px;
  overflow: hidden;
  border-right: 1px solid #eef1f5;
  border-bottom: 1px solid #eef1f5;
  background: #fff;
}

.dfsmp2-dashboard-month-day:nth-child(7n) {
  border-right: 0;
}

.dfsmp2-dashboard-month-day.is-muted {
  background: #fafbfc;
}

.dfsmp2-dashboard-month-date {
  margin-bottom: 4px;
}

.dfsmp2-dashboard-month-date a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 24px;
  border-radius: 999px;
  color: var(--dfsmp2-text);
  text-decoration: none;
  font-weight: 800;
}

.dfsmp2-dashboard-month-day.is-muted .dfsmp2-dashboard-month-date a {
  color: #8a94a3;
}

.dfsmp2-dashboard-day-view {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 420px);
  gap: 16px;
  align-items: start;
}

.dfsmp2-dashboard-timeline {
  display: grid;
  gap: 0;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.dfsmp2-dashboard-time-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 48px;
  border-bottom: 1px solid #eef1f5;
}

.dfsmp2-dashboard-time-row:last-child {
  border-bottom: 0;
}

.dfsmp2-dashboard-time-label {
  padding: 9px 8px;
  border-right: 1px solid #eef1f5;
  background: #f6f8fb;
  color: #4d5a6b;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.dfsmp2-dashboard-time-slot {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 7px;
  min-width: 0;
}

.dfsmp2-dashboard-time-empty {
  display: block;
  min-height: 20px;
}

.dfsmp2-timeline-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) minmax(120px, 220px);
  gap: 8px;
  align-items: center;
  min-height: 30px;
  padding: 5px 8px;
  border: 1px solid #cfe0f2;
  border-left: 4px solid #0f6ab4;
  border-radius: 6px;
  background: #f7fbff;
  color: var(--dfsmp2-text);
  text-decoration: none;
}

.dfsmp2-timeline-card:hover,
.dfsmp2-timeline-card.is-selected {
  border-color: #0f6ab4;
  background: #eaf4ff;
}

.dfsmp2-timeline-card-cancelled {
  border-left-color: #a32020;
  background: #fff7f7;
  opacity: 0.72;
}

.dfsmp2-timeline-card span {
  color: #0b4f86;
  font-size: 12px;
  font-weight: 800;
}

.dfsmp2-timeline-card strong,
.dfsmp2-timeline-card small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dfsmp2-timeline-card small {
  color: var(--dfsmp2-muted);
  font-size: 12px;
}

.dfsmp2-dashboard-detail {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.dfsmp2-dashboard-detail-empty {
  padding: 18px;
  border: 1px dashed var(--dfsmp2-border);
  border-radius: 6px;
  background: var(--dfsmp2-bg);
  color: var(--dfsmp2-muted);
  font-weight: 700;
}

.dfsmp2-dashboard-detail-head {
  display: grid;
  gap: 5px;
}

.dfsmp2-dashboard-detail-head span {
  color: #0b4f86;
  font-size: 13px;
  font-weight: 800;
}

.dfsmp2-dashboard-detail-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.dfsmp2-detail-status {
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eaf4ff;
  color: #0b4f86;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.dfsmp2-detail-status-cancelled {
  background: #fff1f1;
  color: #a32020;
}

.dfsmp2-dashboard-detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.dfsmp2-dashboard-detail-list div {
  min-width: 0;
}

.dfsmp2-dashboard-detail-list .is-wide {
  grid-column: 1 / -1;
}

.dfsmp2-dashboard-detail-list dt {
  margin: 0 0 2px;
  color: var(--dfsmp2-muted);
  font-size: 12px;
  font-weight: 800;
}

.dfsmp2-dashboard-detail-list dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--dfsmp2-text);
  font-weight: 600;
}

.dfsmp2-dashboard-side-form,
.dfsmp2-dashboard-side-cancel {
  display: grid;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #eef1f5;
}

.dfsmp2-dashboard-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.dfsmp2-dashboard-side-form label,
.dfsmp2-dashboard-side-cancel label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
}

.dfsmp2-dashboard-side-form input,
.dfsmp2-dashboard-side-form textarea,
.dfsmp2-dashboard-side-cancel textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  padding: 8px 9px;
  font: inherit;
}

.dfsmp2-dashboard-side-form button,
.dfsmp2-dashboard-side-cancel button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
}

.dfsmp2-dashboard-side-form button {
  background: #134f7f;
  color: #fff;
}

.dfsmp2-dashboard-side-cancel button {
  border: 1px solid #e0a7a7;
  background: #fff7f7;
  color: #a32020;
}

.dfsmp2-dashboard-booking {
  margin-bottom: 10px;
  border: 1px solid #dce3ec;
  border-left: 4px solid #0f6ab4;
  border-radius: 7px;
  background: #f9fbfd;
}

.dfsmp2-dashboard-booking-link {
  display: block;
  color: var(--dfsmp2-text);
  text-decoration: none;
}

.dfsmp2-dashboard-booking-link:hover {
  border-color: #9fc4e8;
  background: #eaf4ff;
}

.dfsmp2-dashboard-booking-compact {
  margin-bottom: 3px;
  border-radius: 5px;
  border-left-width: 3px;
  background: #fff;
}

.dfsmp2-dashboard-booking-compact summary {
  display: block;
  min-height: 22px;
  padding: 3px 4px;
}

.dfsmp2-dashboard-booking-compact summary span {
  font-size: 10px;
  line-height: 1.15;
}

.dfsmp2-dashboard-booking-compact summary em {
  display: none;
}

.dfsmp2-dashboard-booking-compact summary strong {
  flex: 0 0 auto;
  margin-right: 2px;
  font-size: 9px;
  letter-spacing: 0;
}

.dfsmp2-dashboard-line {
  display: flex !important;
  align-items: center;
  min-width: 0;
  gap: 2px;
  white-space: nowrap;
  overflow: hidden;
}

.dfsmp2-dashboard-line b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 700;
}

.dfsmp2-dashboard-more {
  display: block;
  margin-top: 4px;
  padding: 3px 5px;
  border-radius: 5px;
  background: #eef3f8;
  color: #0b4f86;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.dfsmp2-dashboard-more:hover {
  background: #e0eefb;
}

.dfsmp2-dashboard-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid #cfe0f2;
  border-radius: 6px;
  background: #f7fbff;
  color: #0b4f86;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.dfsmp2-dashboard-count:hover {
  border-color: #0f6ab4;
  background: #eaf4ff;
}

.dfsmp2-dashboard-list-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.dfsmp2-dashboard-list-filter label {
  display: grid;
  gap: 5px;
  min-width: min(100%, 360px);
  font-size: 12px;
  font-weight: 800;
}

.dfsmp2-dashboard-list-filter input {
  min-height: 38px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
}

.dfsmp2-dashboard-list-filter button,
.dfsmp2-dashboard-list-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  background: #fff;
  color: var(--dfsmp2-text);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.dfsmp2-dashboard-list-filter button {
  border-color: #134f7f;
  background: #134f7f;
  color: #fff;
}

.dfsmp2-dashboard-list-wrap {
  overflow-x: auto;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.dfsmp2-dashboard-list {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.dfsmp2-dashboard-list th,
.dfsmp2-dashboard-list td {
  padding: 10px 12px;
  border-bottom: 1px solid #eef1f5;
  text-align: left;
  vertical-align: top;
}

.dfsmp2-dashboard-list th {
  background: #f6f8fb;
  color: #4d5a6b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dfsmp2-dashboard-list td {
  color: var(--dfsmp2-text);
  font-size: 13px;
}

.dfsmp2-dashboard-list small,
.dfsmp2-dashboard-list td span {
  color: var(--dfsmp2-muted);
}

.dfsmp2-list-status {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.dfsmp2-list-status-confirmed {
  background: #eaf4ff;
  color: #0b4f86;
}

.dfsmp2-list-status-cancelled {
  background: #fff1f1;
  color: #a32020;
}

.dfsmp2-list-open {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid #cfe0f2;
  border-radius: 6px;
  color: #0b4f86;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.dfsmp2-dashboard-booking-pending {
  border-left-color: #b26200;
}

.dfsmp2-dashboard-booking-cancelled {
  border-left-color: #a32020;
  opacity: 0.72;
}

.dfsmp2-dashboard-booking summary {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  cursor: pointer;
  list-style: none;
}

.dfsmp2-dashboard-booking summary::-webkit-details-marker {
  display: none;
}

.dfsmp2-dashboard-booking summary span {
  display: grid;
  gap: 3px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.dfsmp2-dashboard-booking summary em {
  flex: 0 0 auto;
  align-self: start;
  border-radius: 999px;
  padding: 3px 7px;
  background: #eaf4ff;
  color: #0b4f86;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.dfsmp2-dashboard-contact {
  display: grid;
  gap: 4px;
  padding: 0 10px 10px;
  color: var(--dfsmp2-muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.dfsmp2-dashboard-contact strong {
  color: var(--dfsmp2-text);
}

.dfsmp2-dashboard-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-top: 1px solid #eef1f5;
}

.dfsmp2-dashboard-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
}

.dfsmp2-dashboard-form input,
.dfsmp2-dashboard-form select,
.dfsmp2-dashboard-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  padding: 8px 9px;
  font: inherit;
  color: var(--dfsmp2-text);
  background: #fff;
}

.dfsmp2-dashboard-notes,
.dfsmp2-dashboard-buttons {
  grid-column: 1 / -1;
}

.dfsmp2-dashboard-buttons button,
.dfsmp2-dashboard-cancel button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
}

.dfsmp2-dashboard-buttons button {
  width: 100%;
  background: #134f7f;
  color: #fff;
}

.dfsmp2-dashboard-cancel {
  display: grid;
  gap: 8px;
  padding: 0 10px 10px;
}

.dfsmp2-dashboard-cancel label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--dfsmp2-text);
  font-size: 12px;
  font-weight: 700;
}

.dfsmp2-dashboard-cancel textarea {
  width: 100%;
  min-height: 70px;
  border: 1px solid var(--dfsmp2-border);
  border-radius: 6px;
  padding: 8px 9px;
  font: inherit;
  color: var(--dfsmp2-text);
  background: #fff;
}

.dfsmp2-dashboard-cancel button {
  width: 100%;
  border: 1px solid #e0a7a7;
  background: #fff7f7;
  color: #a32020;
}

.dfsmp2-dashboard-locked {
  margin: 0 10px 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fff7f7;
  color: #a32020;
  font-weight: 700;
}

.dfsmp2-dashboard-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-weight: 800;
}

.dfsmp2-dashboard-notice-success {
  background: #eef6ef;
  color: #17632a;
}

.dfsmp2-dashboard-notice-error {
  background: #fff1f1;
  color: #a32020;
}

@media (max-width: 860px) {
  .dfsmp2-booking,
  .dfsmp2-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .dfsmp2-booking .dfsmp2-form .dfsmp2-grid {
    grid-template-columns: 1fr;
  }

  .dfsmp2-dashboard-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .dfsmp2-week-schedule {
    overflow-x: auto;
    grid-template-columns: 58px repeat(7, minmax(150px, 1fr));
  }

  .dfsmp2-dashboard-day-view {
    grid-template-columns: 1fr;
  }

  .dfsmp2-dashboard-detail {
    position: static;
  }

  .dfsmp2-dashboard-month {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    border: 0;
    gap: 12px;
    background: transparent;
    box-shadow: none;
  }

  .dfsmp2-dashboard-month-head {
    display: none;
  }

  .dfsmp2-dashboard-month-day {
    border: 1px solid var(--dfsmp2-border);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
  }
}

@media (max-width: 720px) {
  .dfsmp2-privacy-modal {
    padding: 12px;
  }

  .dfsmp2-privacy-dialog {
    max-height: 88vh;
  }

  .dfsmp2-privacy-head {
    padding: 14px;
  }

  .dfsmp2-privacy-content {
    padding: 6px 14px 16px;
    font-size: 13px;
  }

  .dfsmp2-dashboard-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .dfsmp2-dashboard-actions {
    justify-content: flex-start;
  }

  .dfsmp2-dashboard-grid,
  .dfsmp2-dashboard-form,
  .dfsmp2-dashboard-month {
    grid-template-columns: 1fr;
  }

  .dfsmp2-dashboard-switch {
    width: 100%;
  }

  .dfsmp2-dashboard-switch a {
    flex: 1;
    justify-content: center;
  }

  .dfsmp2-dashboard-time-row {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .dfsmp2-week-schedule {
    grid-template-columns: 52px repeat(7, minmax(132px, 1fr));
  }

  .dfsmp2-timeline-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .dfsmp2-timeline-card small {
    grid-column: 2;
  }

  .dfsmp2-dashboard-side-grid,
  .dfsmp2-dashboard-detail-list {
    grid-template-columns: 1fr;
  }
}
