/* ----------------------------------------------------------------------------
 * Rezervo Now- Online Appointment Scheduler
 *
 * @package     Rezervo Now
 * @author      Anis Alekaj <anis.alekaj23@gmail.com>
 * @copyright   Copyright (c) Anis Alekaj
 * @license     https://opensource.org/licenses/GPL-3.0 - GPLv3
 * @link        https://rezervonow.com
 * @since       v1.5.0
 * ---------------------------------------------------------------------------- */
:root {
  display: block;
  --booking-surface: #ffffff;
  --booking-surface-soft: #f8fafc;
  --booking-border: #e2e8f0;
  --booking-text: #0f172a;
  --booking-muted: #64748b;
  --booking-accent: #0f766e;
  --booking-accent-strong: #115e59;
  --booking-accent-soft: rgba(15, 118, 110, 0.1);
  --booking-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

html,
body {
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.06), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #eff4f8 100%);
}

#main {
  min-height: 100%;
  padding: 18px 12px;
}

.wrapper {
  min-height: calc(100vh - 36px);
  align-items: center;
}

/* BOOK APPOINTMENT WIZARD
 ------------------------------------------------------------------------------ */
#book-appointment-wizard {
  min-height: 0;
  padding: 0;
  margin: auto;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--booking-shadow);
  backdrop-filter: blur(8px);
}

#book-appointment-wizard #header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px 18px;
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.18), transparent 28%),
    linear-gradient(135deg, #0f172a 0%, #17324c 52%, #0b1220 100%);
}

#book-appointment-wizard #company-name {
  margin: 0;
  color: #ffffff;
  min-width: 0;
}

#book-appointment-wizard .booking-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

#book-appointment-wizard #company-name #company-logo {
  display: block;
  width: auto;
  max-width: 72px;
  max-height: 72px;
  margin: 0;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 14px 30px rgba(2, 8, 23, 0.16);
}

#book-appointment-wizard .booking-brand__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

#book-appointment-wizard .booking-brand__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#book-appointment-wizard .booking-brand__name {
  display: block;
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

#book-appointment-wizard .booking-brand__hint {
  display: block;
  max-width: 520px;
  color: rgba(241, 245, 249, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

#book-appointment-wizard #header.booking-header--offer-catalog {
  gap: 0;
  padding: 18px;
}

#book-appointment-wizard #header.booking-header--offer-catalog .booking-brand {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  text-align: left;
}

#book-appointment-wizard #header.booking-header--offer-catalog .booking-brand__text {
  align-items: flex-start;
  gap: 0;
}

#book-appointment-wizard #header.booking-header--offer-catalog #company-name #company-logo {
  max-width: 64px;
  max-height: 64px;
  padding: 8px;
  border-radius: 20px;
}

#book-appointment-wizard #company-name .display-booking-selection {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  padding: 8px 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
}

#book-appointment-wizard .booking-gallery-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#book-appointment-wizard .booking-gallery-trigger:hover,
#book-appointment-wizard .booking-gallery-trigger:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.booking-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.72);
}

.booking-gallery-modal__card {
  width: min(680px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
}

.booking-gallery-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.booking-gallery-modal__logo {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.booking-gallery-modal__image-wrap {
  margin-top: 16px;
}

.booking-gallery-modal__image {
  width: 100%;
  max-height: 360px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.booking-gallery-modal__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

#book-appointment-wizard #steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0;
}

#book-appointment-wizard .booking-steps-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

#book-appointment-wizard .booking-header-offer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#book-appointment-wizard .booking-header-offer-link:hover,
#book-appointment-wizard .booking-header-offer-link:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-1px);
}

#book-appointment-wizard .book-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

#book-appointment-wizard .book-step strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
  transition: all 0.2s ease;
  cursor: default;
}

#book-appointment-wizard .book-step.active-step,
#book-appointment-wizard .active-step {
  width: 46px;
  height: 46px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(2, 8, 23, 0.16);
}

#book-appointment-wizard .book-step.active-step strong,
#book-appointment-wizard .active-step strong {
  color: var(--booking-accent);
  font-size: 1rem;
  font-weight: 700;
}

#book-appointment-wizard .wizard-frame {
  padding: 18px;
  background: transparent;
}

#book-appointment-wizard .wizard-frame .frame-container {
  height: auto;
  min-height: 0;
  padding: 24px 20px;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 24px;
  background: var(--booking-surface);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

#book-appointment-wizard .frame-container .frame-title {
  margin: 0 0 24px;
  color: var(--booking-text);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
}

#book-appointment-wizard .frame-container .frame-content {
  float: none;
}

#book-appointment-wizard #book-appointment-form #book-appointment-submit {
  width: 100%;
  margin-right: 0;
}

#book-appointment-wizard #form-message {
  text-align: center;
  margin-bottom: 20px;
  color: #dc2626;
}

#book-appointment-wizard .wizard-frame .command-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0 4px;
}

#book-appointment-wizard .wizard-frame .command-buttons > span {
  flex: 1 1 auto;
}

#book-appointment-wizard .wizard-frame .command-buttons .btn,
#book-appointment-wizard .wizard-frame .command-buttons form {
  margin: 0;
}

#book-appointment-wizard .wizard-frame .command-buttons .btn {
  min-width: 136px;
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

#book-appointment-wizard .wizard-frame .command-buttons .btn-dark {
  background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
  border-color: #0f172a;
}

#book-appointment-wizard .wizard-frame .command-buttons .btn-outline-secondary {
  color: var(--booking-text);
  border-color: #cbd5e1;
  background: rgba(255, 255, 255, 0.9);
}

#book-appointment-wizard .wizard-frame .command-buttons .btn-primary {
  border-color: var(--booking-accent);
  background: linear-gradient(135deg, var(--booking-accent) 0%, #164e63 100%);
}

#book-appointment-wizard #wizard-frame-1 .command-buttons {
  justify-content: flex-end;
  margin-top: 8px;
}

#book-appointment-wizard #wizard-frame-1 .command-buttons > span {
  display: none;
}

#book-appointment-wizard .booking-step-field {
  margin-bottom: 18px;
}

#book-appointment-wizard .booking-step-label,
#book-appointment-wizard .form-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--booking-text);
  font-weight: 600;
}

#book-appointment-wizard .booking-step-label strong {
  font-size: 1rem;
  font-weight: 600;
}

#book-appointment-wizard .booking-select-shell {
  position: relative;
}

#book-appointment-wizard .booking-select-shell__icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(15, 118, 110, 0.62);
  pointer-events: none;
}

#book-appointment-wizard .booking-step-select,
#book-appointment-wizard .form-select,
#book-appointment-wizard .form-control {
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid #dbe4ee;
  box-shadow:
    inset 0 1px 2px rgba(15, 23, 42, 0.02),
    0 6px 18px rgba(15, 23, 42, 0.03);
}

#book-appointment-wizard .booking-step-select,
#book-appointment-wizard .booking-select-shell .form-select {
  padding-left: 48px;
}

#book-appointment-wizard .form-select:focus,
#book-appointment-wizard .form-control:focus {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow:
    0 0 0 4px rgba(15, 118, 110, 0.1),
    0 10px 22px rgba(15, 118, 110, 0.06);
}

#book-appointment-wizard .booking-phone-shell {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

#book-appointment-wizard .booking-phone-prefix {
  flex: 0 0 190px;
  max-width: 190px;
}

#book-appointment-wizard .booking-phone-local {
  flex: 1 1 auto;
  min-width: 0;
}

#book-appointment-wizard .booking-phone-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
}

#book-appointment-wizard #wizard-frame-1 select {
  margin-bottom: 0;
}

#book-appointment-wizard #service-description {
  overflow-y: auto;
  clear: both;
  max-height: none;
  margin-top: 4px;
  padding: 0;
  box-shadow: none;
}

#book-appointment-wizard #service-description:empty {
  display: none;
}

#book-appointment-wizard .service-description__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

#book-appointment-wizard .service-description__chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--booking-accent-soft);
  color: var(--booking-accent-strong);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 600;
}

#book-appointment-wizard .service-description__body {
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--booking-muted);
  line-height: 1.7;
}

#book-appointment-wizard .wizard-frame .flatpickr-calendar {
  margin: 10px auto 0;
}

#book-appointment-wizard .wizard-frame #select-time {
  max-width: 320px;
  margin: auto;
  padding: 6px 0 0;
}

#book-appointment-wizard #available-hours {
  overflow: auto;
  margin: 16px 0 0;
  padding-right: 6px;
  width: auto;
  max-height: 280px;
}

#book-appointment-wizard #available-hours div {
  margin-right: 18px;
}

#book-appointment-wizard #available-hours .available-hour {
  margin-bottom: 10px;
  border-radius: 12px;
}

#book-appointment-wizard #available-hours .selected-hour {
  background-color: #439a82;
  border-color: #439a82;
  color: #ffffff;
}

#book-appointment-wizard .span3 {
  min-width: 270px;
}

#book-appointment-wizard #select-timezone {
  margin-bottom: 8px;
}

#book-appointment-wizard #appointment-details p,
#book-appointment-wizard #customer-details p {
  font-size: 16px;
  line-height: 28px;
}

#book-appointment-wizard .captcha-title {
  float: left;
  margin: 7px 0 10px 0;
}

#book-appointment-wizard .captcha-title .fa-sync-alt {
  cursor: pointer;
  transition: all 0.2s ease;
}

#book-appointment-wizard .captcha-title .fa-sync-alt:hover {
  color: var(--booking-accent);
}

#book-appointment-wizard .captcha-image {
  float: left;
  margin-bottom: 20px;
  border-radius: 12px;
}

#book-appointment-wizard .captcha-text {
  width: 100%;
  margin-bottom: 20px;
}

#book-appointment-wizard #frame-footer {
  padding: 14px 18px 18px;
  background: var(--booking-surface-soft);
  border-top: 1px solid var(--booking-border);
  text-align: center;
}

#book-appointment-wizard #frame-footer small {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  color: var(--booking-muted);
}

#book-appointment-wizard .footer-powered-by {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

#book-appointment-wizard .footer-powered-by a {
  color: var(--booking-accent);
  font-weight: 600;
}

#book-appointment-wizard .footer-options {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#book-appointment-wizard #select-language,
#book-appointment-wizard .backend-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #dbe4ee;
  background: #ffffff;
  color: var(--booking-text);
  font-size: 0.85rem;
  font-weight: 600;
}

#book-appointment-wizard #select-language {
  cursor: pointer;
}

#book-appointment-wizard .booking-footer__chip--primary,
#book-appointment-wizard .backend-link {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--booking-accent) 0%, #164e63 100%);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.12);
}

.popover .popover-title {
  text-align: center;
}

.popover .popover-content #language-list .language {
  margin: 15px 0;
}

#book-appointment-wizard #wizard-frame-4 .frame-container .frame-content {
  max-width: 630px;
}

@media (min-width: 768px) {
  #main {
    padding: 24px;
  }

  #book-appointment-wizard #header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
  }

  #book-appointment-wizard #company-name {
    flex: 1 1 auto;
  }

  #book-appointment-wizard .booking-brand {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  #book-appointment-wizard .booking-brand__text {
    align-items: flex-start;
  }

  #book-appointment-wizard #steps {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
  }

  #book-appointment-wizard .booking-steps-stack {
    width: auto;
    align-items: flex-end;
  }

  #book-appointment-wizard .wizard-frame {
    padding: 22px 28px;
  }

  #book-appointment-wizard .wizard-frame .frame-container {
    padding: 30px 28px;
  }

  #book-appointment-wizard .wizard-frame .command-buttons {
    padding: 0;
  }

  #book-appointment-wizard .captcha-title {
    margin-right: 20px;
    margin-top: 7px;
  }

  #book-appointment-wizard .captcha-image {
    float: right;
  }

  #book-appointment-wizard #frame-footer {
    padding: 14px 28px 18px;
    text-align: left;
  }

  #book-appointment-wizard #frame-footer small {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  #book-appointment-wizard #header.booking-header--offer-catalog .booking-brand,
  #book-appointment-wizard #header.booking-header--offer-catalog .booking-brand__text {
    align-items: center;
    text-align: center;
  }

  #book-appointment-wizard .booking-phone-shell {
    flex-direction: column;
    gap: 8px;
  }

  #book-appointment-wizard .booking-phone-prefix {
    flex-basis: auto;
    max-width: none;
  }

  #book-appointment-wizard .wizard-frame .command-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  #book-appointment-wizard .wizard-frame .command-buttons > span {
    display: none;
  }

  #book-appointment-wizard .wizard-frame .command-buttons .button-next,
  #book-appointment-wizard .wizard-frame .command-buttons .btn-primary,
  #book-appointment-wizard .wizard-frame .command-buttons form {
    order: 1;
    width: 100%;
  }

  #book-appointment-wizard .wizard-frame .command-buttons .button-back {
    order: 2;
  }

  #book-appointment-wizard .wizard-frame .command-buttons .btn {
    width: 100%;
  }

  #book-appointment-wizard .footer-powered-by {
    display: none;
  }
}

/* BOOK SUCCESS & MESSAGE
   ------------------------------------------------------------------------- */
#message-frame,
#success-frame {
  background: var(--bs-body-bg);
  text-align: center;
  height: auto;
  border: none;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

#message-frame .alert,
#success-frame .alert {
  margin-top: 20px;
}

#message-frame #message-icon,
#success-frame #success-icon {
  margin-top: 20px;
  margin-right: 20px;
  width: 64px;
  display: block;
  margin: auto;
  float: none !important;
}

#success-frame .btn {
  margin-bottom: 10px;
  width: 80%;
  max-width: 300px;
}

.booking-confirmation {
  max-width: 720px;
  margin: 0 auto;
}

.booking-confirmation__icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.26), transparent 42%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.14) 0%, rgba(15, 23, 42, 0.04) 100%);
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.booking-confirmation #success-icon {
  width: 52px;
  margin: 0 !important;
}

.booking-confirmation__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--booking-accent-soft);
  color: var(--booking-accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-confirmation__title {
  margin: 0;
  color: var(--booking-text);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.booking-confirmation__lead {
  max-width: 560px;
  margin: 14px auto 24px;
  color: var(--booking-muted);
  line-height: 1.7;
}

.booking-confirmation__card {
  margin: 0 auto;
  padding: 22px 20px;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  text-align: left;
}

.booking-confirmation__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.booking-confirmation__card-title {
  margin: 0;
  color: var(--booking-text);
  font-size: 1.05rem;
  font-weight: 700;
}

.booking-confirmation__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-confirmation__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.booking-confirmation__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  border-bottom: none;
}

.booking-confirmation__label {
  color: var(--booking-muted);
  font-size: 0.92rem;
}

.booking-confirmation__value {
  color: var(--booking-text);
  font-size: 0.96rem;
  font-weight: 600;
  text-align: right;
}

.booking-confirmation__value--code {
  font-family: "Consolas", "Monaco", monospace;
  letter-spacing: 0.03em;
}

.booking-confirmation__note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--booking-accent-strong);
  line-height: 1.65;
}

.booking-confirmation__actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.booking-confirmation__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.booking-confirmation__action:hover,
.booking-confirmation__action:focus {
  transform: translateY(-1px);
}

.booking-confirmation__action--primary {
  color: #ffffff;
  border-color: var(--booking-accent);
  background: linear-gradient(135deg, var(--booking-accent) 0%, #164e63 100%);
}

.booking-confirmation__action--primary:hover,
.booking-confirmation__action--primary:focus {
  color: #ffffff;
  border-color: var(--booking-accent-strong);
}

.booking-confirmation__action--secondary {
  color: var(--booking-text);
  border-color: #cbd5e1;
  background: rgba(255, 255, 255, 0.96);
}

.booking-confirmation__action--secondary:hover,
.booking-confirmation__action--secondary:focus {
  color: var(--booking-text);
  border-color: #94a3b8;
  background: #ffffff;
}

.booking-confirmation__status {
  display: block;
  min-height: 1.25rem;
  margin-top: 12px;
  color: var(--booking-muted);
}

@media (min-width: 768px) {
  #message-frame,
  #success-frame {
    height: 100%;
  }

  .booking-confirmation__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .booking-confirmation__card {
    padding: 18px 16px;
  }

  .booking-confirmation__card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-confirmation__value {
    text-align: left;
  }
}

/* CANCEL APPOINTMENT
   ------------------------------------------------------------------------- */
.booking-header-bar {
  padding: 15px 0;
  margin: 0;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.ui-dialog .ui-dialog-title {
  font-size: 1.2em;
}

@media (min-width: 768px) {
  .booking-header-bar {
    text-align: left;
  }
}
