body{
    background: #fff;
}
.appointment-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 35px;
}

/* Single unified box wrapper for header + content */
.booking-wrapper {
    background: #ffffff;
    border-radius: 8px;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.1);*/
    overflow: hidden;
}

.booking-header {
    margin-bottom: 0;
    /*padding: 30px 30px 20px 30px;*/
    padding-bottom: 20px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
}

#booking-wizard-content {
    background: #ffffff;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

.booking-header h1 {
    text-align: center;
    margin-bottom: 0;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*margin: 30px 0 0 0;*/
    position: relative;
    padding: 20px 0;
    gap: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.step-indicator::-webkit-scrollbar {
    display: none;
}

/* Connecting line between steps */
.step-indicator::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #e0e7ff 0%, #c7d2fe 50%, #e0e7ff 100%);
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 2px;
}

.step-indicator .step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    min-width: 120px;
    padding: 0 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    width: 100%;
}

/* Step number circle with icon */
.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
    color: #6b7280;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 3px solid #ffffff;
    overflow: hidden;
}

/* Step icon - hidden on desktop by default */
.step-icon {
    display: none;
    position: absolute;
    font-size: 20px;
    color: inherit;
    transition: all 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.step-icon i {
    display: block;
}

/* Step label */
.step-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    padding: 0 4px;
    font-weight: 500;
    line-height: 1.3;
    transition: all 0.3s ease;
    text-align: center;
    word-break: break-word;
}

/* Active step */
.step-indicator .step.active .step-number,
.step-indicator .step.is-current .step-number {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
    border-color: #ffffff;
}

.step-indicator .step.active .step-label,
.step-indicator .step.is-current .step-label {
    color: #2563eb;
    font-weight: 600;
}

/* Completed step */
.step-indicator .step.is-completed .step-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.step-indicator .step.is-completed .step-number::after {
    content: '\f00c';
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    font-weight: 900;
    position: absolute;
    font-size: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    z-index: 2;
}

/* Hide number text when completed (checkmark will show) */
.step-indicator .step.is-completed .step-number {
    font-size: 0;
}

.step-indicator .step.is-completed .step-label {
    color: #059669;
    font-weight: 600;
}

/* Upcoming step */
.step-indicator .step.is-upcoming {
    /*opacity: 0.7;*/
}

.step-indicator .step.is-upcoming .step-number {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: #9ca3af;
}

/* Hover effects */
.step-indicator .step.is-completed {
    cursor: pointer;
}

.step-indicator .step.is-completed:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.step-indicator .step.active:hover .step-number,
.step-indicator .step.is-current:hover .step-number {
    transform: scale(1.15);
}

/* Connecting line between steps - completed */
.step-indicator .step.is-completed::before {
    content: '';
    position: absolute;
    top: 35%;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #10b981 0%, #10b981 100%);
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.step-indicator .step:last-child::before {
    display: none;
}

/* Connecting line between steps - current */
.step-indicator .step.is-current::before {
    content: '';
    position: absolute;
    top: 35%;
    right: -50%;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #3b82f6 0%, #e0e7ff 100%);
    z-index: 0;
    transform: translateY(-50%);
    border-radius: 2px;
    animation: progressLine 0.6s ease forwards;
}

@keyframes progressLine {
    to {
        width: 100%;
    }
}

/* Responsive: Mobile and small devices */
@media (max-width: 768px) {
    .step-indicator {
        justify-content: center;
        padding: 15px 0;
        gap: 0;
    }
    
    .step-indicator .step {
        min-width: 70px;
        flex: 0 0 auto;
        padding: 0 4px;
    }
    
    .step-content {
        gap: 6px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    /* Hide labels on mobile */
    .step-label {
        display: none !important;
    }
    
    /* Show icons on mobile */
    .step-icon {
        display: block !important;
    }
    
    /* Hide number text, show icon on mobile */
    .step-number {
        font-size: 0;
    }
    
    .step-indicator .step.active .step-number,
    .step-indicator .step.is-current .step-number {
        font-size: 0;
    }
    
    .step-indicator .step.is-completed .step-number::after {
        font-size: 16px;
    }
    
    /* Hide icon for completed steps (checkmark shows instead) */
    .step-indicator .step.is-completed .step-icon {
        display: none !important;
    }
    
    /* Ensure icon is visible in step number circle for active/upcoming steps */
    .step-indicator .step.active .step-icon,
    .step-indicator .step.is-current .step-icon {
        color: #fff;
    }
    
    .step-indicator .step.is-upcoming .step-icon {
        color: #9ca3af;
    }
    
    /* Adjust connecting lines for mobile */
    .step-indicator::before {
        display: none;
    }
    
    .step-indicator .step::before {
        display: none;
    }
}

/* Very small devices */
@media (max-width: 480px) {
    .step-indicator .step {
        min-width: 60px;
        padding: 0 2px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
    }
    
    .step-icon {
        font-size: 18px;
    }
}

.wizard-loading {
    padding: 40px 10px;
    text-align: center;
    color: #64748b;
    font-weight: 600;
}

.booking-step {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.booking-step h2 {
    margin-bottom: 20px;
    color: #333;
}

.step-description {
    margin-bottom: 30px;
    color: #666;
}

.services-grid,
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.category-select {
    width: 100%;
    max-width: 100%;
}

/* Select2 Custom Styling */
.select2-container--default .select2-selection--single {
    height: 45px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px;
    padding-left: 0;
    color: #333;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 43px;
    right: 10px;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #007bff;
    color: white;
}

.select2-dropdown {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
}

.category-description {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.category-item,
.location-item,
.staff-item {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: #ffffff;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.08);*/
    user-select: none;
    -webkit-user-select: none;
}

.category-item *,
.service-item *,
.location-item *,
.staff-item * {
    pointer-events: none;
}

.category-item input,
.service-item input,
.location-item input,
.staff-item input,
.category-item button,
.service-item button {
    pointer-events: auto;
}

.category-item:hover,
.service-item:hover,
.location-item:hover,
.staff-item:hover {
    border-color: #007bff;
    /*box-shadow: 0 2px 8px rgba(0,123,255,0.2);*/
}

.category-item.is-selected,
.service-item.is-selected,
.location-item.is-selected,
.staff-item.is-selected {
    border-color: #007bff;
    background: #f0f7ff;
    /*box-shadow: 0 4px 14px rgba(0,123,255,0.22);*/
    /*transform: translateY(-2px);*/
}

.category-item.is-selected label,
.service-item.is-selected label,
.location-item.is-selected label,
.staff-item.is-selected label {
    color: #0b5ed7;
}

.category-item input[type="radio"],
.service-item input[type="checkbox"],
.location-item input[type="radio"],
.staff-item input[type="radio"] {
    display: none;
}

.category-item input[type="radio"]:checked + label,
.service-item input[type="checkbox"]:checked + label,
.location-item input[type="radio"]:checked + label,
.staff-item input[type="radio"]:checked + label {
    color: #007bff;
}

.category-item input[type="radio"]:checked ~ *,
.service-item input[type="checkbox"]:checked ~ *,
.location-item input[type="radio"]:checked ~ *,
.staff-item input[type="radio"]:checked ~ * {
    border-color: #007bff;
}

/* Time slot cards (wizard) */
.timeslots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    gap: 10px;
}

.timeslot-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    background: #ffffff;
    /*box-shadow: 0 2px 4px rgba(0,0,0,0.08);*/
    transition: all 0.2s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.timeslot-item * {
    pointer-events: none;
}

.timeslot-item input {
    pointer-events: auto;
}

.timeslot-item:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0,123,255,0.15);
}

.timeslot-item.is-selected {
    border-color: #007bff;
    background: #f0f7ff;
    /*box-shadow: 0 4px 14px rgba(0,123,255,0.22);*/
    /*transform: translateY(-2px);*/
}

.timeslot-item.is-unavailable {
    opacity: 0.55;
    cursor: not-allowed;
    border-style: dashed;
}

.timeslot-item.is-unavailable:hover {
    border-color: #e0e0e0;
    box-shadow: none;
}

.timeslot-subtext {
    margin-top: 4px;
    font-size: 12px;
    color: #6b7280;
}

.timeslot-item input[type="radio"] {
    display: none;
}

.timeslot-item label {
    cursor: pointer;
    margin: 0;
    display: block;
}

.category-item label,
.service-item label,
.location-item label,
.staff-item label {
    cursor: pointer;
    margin: 0;
    display: block;
}

.category-item h4,
.service-item h4,
.location-item h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.service-price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
}

.extra-price {
    display: block;
    color: #000;
    font-weight: bold;
    margin-top: 5px;
}

/* Service thumbnail + layout */
.service-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.service-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    flex: 0 0 auto;
}

.service-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.service-name {
    display: block;
    font-size: 14px;
    font-weight: bold;
}

/* Staff avatar + layout */
.staff-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.staff-avatar-wrap {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.staff-avatar-wrap img,
.staff-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    display: block;
}

.staff-meta {
    flex: 1 1 auto;
    min-width: 0;
}

.staff-name {
    display: block;
}

.selected-services-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-services-summary h3 {
    margin-bottom: 15px;
}

.selected-services-summary ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.selected-services-summary li {
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}

.total-price {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    text-align: right;
}

.booking-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-prev {
    background: #6c757d;
    color: #fff;
}

.btn-next,
.btn-submit {
    background: #007bff;
    color: #fff;
}

.btn-submit {
    background: #28a745;
}

.btn-prev:hover,
.btn-next:hover,
.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group label .required {
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.booking-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.summary-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.summary-section:last-child {
    border-bottom: none;
}

.summary-section h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 18px;
}

.summary-section.total-section {
    border-top: 2px solid #007bff;
    padding-top: 20px;
    margin-top: 20px;
}

.total-amount {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.booking-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

.booking-success h1 {
    color: #28a745;
    margin-bottom: 20px;
}

.success-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.booking-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: left;
}

.booking-details h3 {
    margin-bottom: 20px;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.detail-item:last-child {
    border-bottom: none;
}

.success-actions {
    margin-top: 30px;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #999;
}

.staff-list-container{
   display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* intlTelInput Styling */
.iti {
    width: 100%;
}

.iti__flag-container {
    position: relative;
}

.iti__selected-flag {
    padding: 0 8px 0 12px;
    border-right: 1px solid #ced4da;
}

.iti__selected-flag:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.iti__arrow {
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #555;
}

.iti__country-list {
    z-index: 9999;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.iti__country {
    padding: 8px 12px;
    cursor: pointer;
}

.iti__country:hover {
    background-color: #f8f9fa;
}

.iti__country.iti__highlight {
    background-color: #007bff;
    color: white;
}

.iti__dial-code {
    color: #6c757d;
}

#customer_phone.error {
    border-color: #dc3545;
}

#phone-error-msg {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .staff-list-container,
    .categories-grid,
    .services-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    /*.staff-list-container{*/
    /*   display: grid;*/
    /*    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));*/
    /*    gap: 20px;*/
    /*    margin-bottom: 30px;*/
    /*}*/

}

/* ============================================
   TRACK PAGE STYLES
   ============================================ */

.appointment-tracking-container {
    min-height: 100vh;
}

.appointment-tracking-container .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Tracking Form Card */
.tracking-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tracking-form .form-group {
    margin-bottom: 0;
}

.tracking-form label {
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    color: #1f2937;
    font-size: 15px;
}

.tracking-form .required {
    color: #ef4444;
    margin-left: 3px;
}

.tracking-form .input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.tracking-form .form-control {
    flex: 1;
    padding: 20px 18px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    transition: all 0.3s ease;
    background: #fff;
}

.tracking-form .form-control:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.tracking-form .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 0;
    padding: 7px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tracking-form .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.tracking-form .btn-primary:active {
    transform: translateY(0);
}

.tracking-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Error Message */
#error-message {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 30px;
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

#error-message i {
    font-size: 18px;
    color: #dc2626;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Appointment Details Card */
.appointment-details-card {
    background: #ffffff;
    border-radius: 16px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Timeline - Uses step-indicator design */
.status-timeline {
    margin-bottom: 40px;
}

.status-timeline .step-indicator {
    margin: 0;
}

/* Appointment Info Section */
.appointment-info {
    border-top: 2px solid #f3f4f6;
    padding-top: 35px;
    margin-top: 10px;
}

.appointment-info .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.appointment-info .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    margin-bottom: 25px;
}

.appointment-info strong {
    color: #6b7280;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-info span {
    color: #1f2937;
    font-size: 15px;
    display: block;
    word-break: break-word;
}

.appointment-info .total-price {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 5px;
}

.appointment-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.appointment-info ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
    border-radius: 6px;
    padding-left: 12px;
    margin-left: -12px;
    margin-right: -12px;
}

.appointment-info ul li:hover {
    background: #f9fafb;
}

.appointment-info ul li:last-child {
    border-bottom: none;
}

.appointment-info ul li i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

.appointment-info .notes-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f3f4f6;
}

.appointment-info .notes-section p {
    color: #374151;
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.6;
    background: #f9fafb;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

/* Loading State */
.text-center {
    text-align: center;
}

.text-center .fa-spinner {
    color: #3b82f6;
    animation: spin 1s linear infinite;
}

.tracking-form .input-group {
    --tw-shadow:none;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design for Track Page */
@media (max-width: 768px) {
    .appointment-tracking-container {
        padding: 20px 10px;
    }
    
    .tracking-form-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .tracking-form .input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .tracking-form .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .appointment-details-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    
    .appointment-info .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .appointment-info .total-price {
        font-size: 20px;
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .tracking-form-card {
        padding: 20px 15px;
    }
    
    .appointment-details-card {
        padding: 20px 15px;
    }
}



/* Flicker Calender */
.flatpickr-day.today {
    border-color: #000000 !important;
    color:#fff !important;
    background: #000 !important;
}
.flatpickr-day.today:hover {
    background: #2c6dee !important;
    border-color: #2c6dee !important;
}
