.booking-system-container { padding: 0; color: #333; font-size: 1rem; }
.booking-system-wrapper { max-width:520px; margin: 0 auto; }
.booking-header { text-align: center; margin-bottom: 2rem; }
.booking-title { font-size: 1.875rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.booking-subtitle { color: #6b7280; margin: 0; }
.booking-progress { display: flex; justify-content: center; align-items: center; margin-bottom: 2rem; gap: 1rem; }
.progress-step { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; transition: all 0.2s; background-color: #f3f4f6; color: #6b7280; }
.progress-step.active { background-color: #dbeafe; color: #1d4ed8; }
.progress-divider { width: 2rem; height: 1px; background-color: #d1d5db; }
.booking-card { background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 10px solid #8badf7;
 }
.booking-card-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid #f3f4f6; }
.back-button { display: flex; align-items: center; gap: 0.25rem; background: none; border: none; color: #2563eb; cursor: pointer; font-size: 0.875rem; padding: 0.5rem; border-radius: 0.25rem; transition: background-color 0.2s; }
.back-button:hover { background-color: #f3f4f6; }
.card-title { flex: 1; text-align: center; }
.card-title h2 { font-size: 1.25rem; color: #111827; margin: 0; }
.card-title p { color: #2563eb; font-size: 1rem; margin: 0.3rem 0 0; }
.booking-card-content { padding: 1.5rem; }
.booking-step { display: none; }
.booking-step.active { display: block; }

/* Calendar Styles */
.calendar-container { max-width: 24rem; margin: 0 auto; }
#calendar-month-year { font-size: 24px; }
.calendar-header { font-size: 16px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.calendar-nav { background: none; font-size: 16px; border: 1px solid #d1d5db; border-radius: 0.25rem; padding: 0.5rem; cursor: pointer; transition: all 0.2s; }
.calendar-nav:hover { background-color: #f3f4f6; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.25rem; }
.calendar-day { aspect-ratio: 1; color: #225cda; display: flex; align-items: center; justify-content: center; border-radius: 0.25rem; cursor: pointer; transition: all 0.2s; font-size: 0.875rem; }
.calendar-day:hover:not(.disabled) { background-color: #dbeafe; }
.calendar-day.disabled { color: #9ca3af; cursor: not-allowed; }
.calendar-day.selected { background-color: #2563eb; color: white; }
.calendar-day.today { background-color: #f3f4f6; font-weight: 600; }

/* Time Picker Styles */
.time-picker-header { text-align: center; margin-bottom: 1.5rem; }
.time-picker-header i { font-size: 2rem; color: #2563eb; display: block; margin-bottom: 0.5rem; }
.time-slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.time-slot { padding: 0.75rem; border: 1px solid #d1d5db; border-radius: 0.5rem; background: white; cursor: pointer; transition: all 0.2s; text-align: center; }
.time-slot:hover:not(.disabled) { border-color: #3b82f6; background-color: #dbeafe; }
.time-slot.disabled { background-color: #f3f4f6; color: #9ca3af; cursor: not-allowed; opacity: 0.7; pointer-events: none; }
.time-slot.disabled:hover { background-color: #f3f4f6; border-color: #d1d5db; }
.time-slot.disabled div { color: #9ca3af; }
.time-slot.selected { border-color: #2563eb; background-color: #2563eb; color: white; }
.time-slot.selected div { color: white !important; }
.time-notice { text-align: center; font-size: 0.875rem; color: #6b7280; }
.time-notice p { margin: 0.25rem 0; }

/* Form Styles */
.form-group { margin-bottom: 1.5rem; font-size: 1rem; }
.form-group label { display: inline-block; width: 100px; margin-right: 0px; vertical-align: middle; font-weight: 500; color: #374151; }
.form-group label i { color: #2563eb; margin-right: 0.25rem; }
.form-group input, .form-group textarea { display: inline-block; width: calc(100% - 115px); vertical-align: middle; padding:0.5rem 0.75rem; border: 1px solid #d1d5db; border-radius: 0.375rem; font-size: 1rem; transition: border-color 0.2s; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
.form-group textarea { min-height: 6rem; resize: vertical; }
.error-message { display: block; margin-top: 5px; margin-left: 110px; color: #dc2626; font-size: 0.875rem; }
.help-text { display: block; margin-top: 5px; margin-left: 110px; color: #6b7280; font-size: 0.875rem; }
.booking-notice { background-color: #dbeafe; border: 1px solid #93c5fd; border-radius: 0.5rem; padding: 1rem; margin-bottom: 1.5rem; }
.booking-notice p { color: #1e40af; font-weight: 500; margin: 0 0 0.5rem; }
.booking-notice ul { margin: 0; padding-left: 1rem; color: #1e40af; }
.booking-notice li { font-size: 0.75rem; margin-bottom: 0.25rem; }
.submit-button { width: 100%; padding: 0.75rem; background-color: #2563eb; color: white; border: none; border-radius: 0.375rem; font-size: 1rem; font-weight: 500; cursor: pointer; transition: background-color 0.2s; }
.submit-button:hover { background-color: #1d4ed8; }
.submit-button:disabled { background-color: #9ca3af; cursor: not-allowed; }

/* Success Screen Styles */
.success-content { text-align: center; padding: 2rem 0; }
.success-icon { width: 4rem; height: 4rem; background-color: #dbeafe; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.success-icon i { font-size: 2rem; color: #2563eb; }
.success-content h3 { font-size: 1.125rem; font-weight: 600; color: #111827; margin-bottom: 1rem; }
.booking-summary { background-color: #f9fafb; border-radius: 0.5rem; padding: 1rem; text-align: left; margin-bottom: 1.5rem; }
.booking-summary p { margin: 0.5rem 0; font-size: 0.875rem; }
.booking-summary strong { font-weight: 500; }
.success-message { color: #6b7280; margin-bottom: 1.5rem; }
.reset-button { padding: 0.75rem 1.5rem; background-color: #2563eb; color: white; border: none; border-radius: 0.375rem; font-weight: 500; cursor: pointer; transition: background-color 0.2s; }
.reset-button:hover { background-color: #1d4ed8; }

/* Responsive Styles */
@media (max-width: 640px) {
    .booking-system-container { padding: 1rem; }
    .booking-progress { flex-direction: column; gap: 0.5rem; }
    .progress-divider { width: 1px; height: 1rem; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .booking-card-header { flex-direction: column; gap: 1rem; }
    .back-button { align-self: flex-start; }
    .form-group label{width: 80px;}
    .form-group input, .form-group textarea { width: calc(100% - 85px);}
}
