/* ===== CSS Variables - Matching ALBS Portal ===== */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --secondary: #7c3aed;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --source-outlook: #0078d4;
  --source-onboarding: #10b981;
  --sidebar-width: 240px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.5;
}

.app-container {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: var(--sidebar-width);
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(124, 58, 237, 0.2);
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-700);
}

.sidebar-header h1 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  color: var(--gray-300);
  font-size: 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  width: 100%;
}

.nav-btn:hover {
  background: var(--gray-800);
  color: white;
}

.nav-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

.badge {
  margin-left: auto;
  background: var(--danger);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--gray-700);
}

.connection-status {
  margin-bottom: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-500);
}

.status-dot.connected { background: var(--success); }

.sync-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  color: white;
  font-size: 13px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s;
}

.sync-btn:hover {
  background: var(--gray-700);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  border-left: 3px solid var(--secondary);
}

.view-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.btn-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: var(--radius);
  cursor: pointer;
}

.btn-icon:hover {
  background: var(--gray-50);
}

.btn-primary {
  padding: 8px 16px;
  background: var(--primary);
  border: none;
  color: white;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.view-toggle {
  display: flex;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.btn-toggle {
  padding: 8px 16px;
  background: white;
  border: none;
  font-size: 13px;
  cursor: pointer;
}

.btn-toggle:hover {
  background: var(--gray-50);
}

.btn-toggle.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
}

/* Calendar */
.calendar-container {
  flex: 1;
  overflow: hidden;
  background: white;
}

.week-view {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.week-header {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.time-gutter {
  width: 60px;
  flex-shrink: 0;
}

.day-headers {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-header {
  padding: 12px;
  text-align: center;
  border-left: 1px solid var(--gray-200);
}

.day-header .day-name {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
}

.day-header .day-number {
  font-size: 24px;
  font-weight: 600;
  margin-top: 4px;
}

.day-header.today .day-number {
  background: var(--primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 0;
}

.week-body {
  flex: 1;
  display: flex;
  overflow-y: auto;
}

.time-column {
  width: 60px;
  flex-shrink: 0;
}

.time-slot-label {
  height: 60px;
  padding: 4px 8px;
  font-size: 11px;
  color: var(--gray-500);
  text-align: right;
}

.days-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day-column {
  border-left: 1px solid var(--gray-200);
  position: relative;
  min-height: 720px;
}

.hour-slot {
  height: 60px;
  border-bottom: 1px solid var(--gray-100);
}

.event {
  position: absolute;
  left: 2px;
  right: 2px;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  overflow: hidden;
  cursor: pointer;
}

.event.outlook {
  background: rgba(0, 120, 212, 0.15);
  border-left: 3px solid var(--source-outlook);
  color: var(--source-outlook);
}

.event.onboarding {
  background: rgba(16, 185, 129, 0.15);
  border-left: 3px solid var(--source-onboarding);
  color: var(--source-onboarding);
}

.event-title {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-time {
  font-size: 10px;
  opacity: 0.8;
}

/* Month View */
.month-view {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.month-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.month-header div {
  padding: 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
}

.month-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
}

.month-day {
  border: 1px solid var(--gray-100);
  padding: 4px;
  min-height: 100px;
}

.month-day.other-month {
  background: var(--gray-50);
  color: var(--gray-400);
}

.month-day.today {
  background: rgba(37, 99, 235, 0.05);
}

.month-day-number {
  font-size: 14px;
  font-weight: 500;
  padding: 4px;
}

.month-day.today .month-day-number {
  background: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-400);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 4px;
}
/* Month Events */
.month-event {
  font-size: 10px;
  padding: 2px 4px;
  border-radius: 3px;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Approvals View */
.approvals-view,
.settings-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.approvals-list {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.approval-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}

.approval-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.approval-title {
  font-weight: 600;
  font-size: 16px;
}

.approval-source {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: capitalize;
}

.approval-source.onboarding {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
}

.approval-details {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}

.approval-detail-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.approval-actions {
  display: flex;
  gap: 12px;
}

.btn-approve {
  flex: 1;
  padding: 10px;
  background: var(--success);
  border: none;
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
}

.btn-approve:hover {
  background: #059669;
}

.btn-reject {
  flex: 1;
  padding: 10px;
  background: white;
  border: 1px solid var(--danger);
  color: var(--danger);
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
}

.btn-reject:hover {
  background: rgba(239, 68, 68, 0.1);
}

/* Settings View */
.settings-content {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  max-width: 600px;
}

.settings-section {
  margin-bottom: 32px;
}

.settings-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.settings-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
}

.setting-row {
  margin-bottom: 16px;
}

.setting-row:last-of-type {
  margin-bottom: 0;
}

.setting-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.setting-row input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
  transition: border-color 0.15s;
}

.setting-row input:focus {
  outline: none;
  border-color: var(--primary);
}

.setting-actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.api-info {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.api-endpoint {
  display: block;
  background: var(--gray-100);
  padding: 8px 12px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
  margin-bottom: 8px;
}

.api-hint {
  font-size: 12px;
  color: var(--gray-500);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 20px;
  background: var(--gray-800);
  color: white;
  border-radius: var(--radius);
  font-size: 14px;
  box-shadow: var(--shadow-md);
  animation: slideIn 0.3s ease;
  z-index: 1000;
}

.toast.success {
  background: var(--success);
}

.toast.error {
  background: var(--danger);
}

@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Icon Large */
.icon-large {
  margin-bottom: 12px;
  opacity: 0.5;
}

/* New Event Button */
.new-event-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.15s;
}

.new-event-btn:hover {
  opacity: 0.9;
}

/* Date Picker Toggle */
.date-picker-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gray-600);
}

.date-picker-toggle:hover {
  background: var(--gray-200);
}

/* Mini Date Picker */
.mini-date-picker {
  position: absolute;
  top: 60px;
  right: 200px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 100;
  padding: 12px;
}

.mini-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mini-picker-header button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
}

.mini-picker-header span {
  font-weight: 600;
}

.mini-picker-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.mini-picker-months button {
  padding: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.mini-picker-months button:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Year View */
.year-view {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px;
  overflow-y: auto;
  height: 100%;
}

.year-month {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px;
}

.year-month-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.year-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  font-size: 11px;
}

.year-day-label {
  text-align: center;
  color: var(--gray-500);
  padding: 2px;
}

.year-day {
  text-align: center;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
}

.year-day:hover {
  background: var(--gray-100);
}

.year-day.other-month {
  color: var(--gray-300);
}

.year-day.today {
  background: var(--primary);
  color: white;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-500);
}

.modal form {
  padding: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-cancel {
  flex: 1;
  padding: 10px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
}

.btn-cancel:hover {
  background: var(--gray-50);
}

/* API Info Row */
.api-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}

.api-info-row:last-of-type {
  border-bottom: none;
}

.api-label {
  color: var(--gray-600);
  font-size: 13px;
}

.api-info-row code {
  background: var(--gray-100);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
  .year-view {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .year-view {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Connection success */
.connection-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 500;
  margin-bottom: 16px;
}

.status-icon {
  width: 24px;
  height: 24px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.settings-desc {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-sync {
  padding: 10px 20px;
  background: var(--secondary);
  border: none;
  color: white;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
}

.btn-sync:hover {
  background: var(--secondary-hover);
}

/* Availability View */
.availability-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.availability-content {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  max-width: 700px;
}

.availability-section {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}

.availability-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.availability-hint {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.day-toggles {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.day-toggle {
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
}

.day-toggle:hover {
  border-color: var(--primary);
}

.day-toggle.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.time-slots-config {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.time-slot-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.time-slot-row input[type="time"],
.time-slot-row input[type="text"] {
  padding: 8px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
}

.time-slot-row span {
  color: var(--gray-500);
}

.add-slot-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius);
  color: var(--gray-600);
  cursor: pointer;
  width: 100%;
}

.add-slot-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.availability-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.availability-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
}

.booking-url-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-100);
  padding: 12px 16px;
  border-radius: var(--radius);
}

.booking-url-box code {
  flex: 1;
  font-size: 14px;
}

.copy-btn {
  padding: 8px 16px;
  background: var(--primary);
  border: none;
  color: white;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
}

/* Booking Page */
.booking-page {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
}

.booking-header {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.booking-header h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.booking-header p {
  opacity: 0.9;
}

.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.progress-step.active .step-number {
  background: white;
  color: var(--primary);
}

.progress-step.completed .step-number {
  background: var(--success);
  color: white;
}

.step-label {
  color: white;
  font-size: 12px;
  opacity: 0.8;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  margin: 0 10px;
  margin-bottom: 24px;
}

.booking-step {
  background: white;
  border-radius: 16px;
  padding: 24px;
}

.booking-step h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--gray-800);
}

.loading, .no-slots {
  text-align: center;
  color: var(--gray-500);
  padding: 40px;
}

.slots-container {
  max-height: 400px;
  overflow-y: auto;
}

.date-group {
  margin-bottom: 20px;
}

.date-header {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-100);
}

.time-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-btn {
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: var(--radius);
  font-size: 13px;
  cursor: pointer;
}

.time-btn:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.time-btn.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.selected-time-summary {
  background: rgba(37, 99, 235, 0.1);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 500;
}

.booking-form .form-group {
  margin-bottom: 16px;
}

.booking-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 14px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-back {
  flex: 1;
  padding: 12px;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  cursor: pointer;
}

.btn-book {
  flex: 2;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}

.success-step {
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 20px;
}

.confirmation-details {
  background: var(--gray-50);
  padding: 16px;
  border-radius: var(--radius);
  margin: 20px 0;
  text-align: left;
}

.confirmation-details p {
  margin: 4px 0;
}

.confirmation-note {
  font-size: 13px;
  color: var(--gray-500);
}
