    /* Self-contained styles with unique class prefixes */
    .xendoo-scheduler-container {
      --xs-primary: #003546;
      --xs-secondary: #24bfe6;
      --xs-accent: #00c389;
      --xs-light-bg: #f2f6f8;
      --xs-white: #ffffff;
      --xs-error: #e63946;
      --xs-success: #00c389;
      --xs-text: #003546;
      --xs-border: #d1e0e6;
      font-family: 'MierB', sans-serif;
      max-width: 1000px;
      margin: 0 auto;
      padding: 20px;
      background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 53, 70, 0.15);
    }
    
    .xs-header {
      text-align: center;
      padding: 20px;
      margin-bottom: 20px;
    }
    
    .xs-logo {
      max-width: 24% !important;
      margin: 0 auto 5px;
    }
    
    .xs-title {
      font-size: 2.2rem;
      color: var(--xs-primary);
      margin-bottom: 10px;
    }
    
    .xs-subtitle {
      font-size: 1.1rem;
      color: #5a7d8a;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .xs-scheduler-card {
      background: var(--xs-white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 53, 70, 0.1);
      display: flex;
      flex-direction: column;
    }
    
    @media (min-width: 900px) {
      .xs-scheduler-card {
        flex-direction: row;
      }
    }
    
    .xs-calendar-section {
      background: linear-gradient(135deg, #003546 0%, #005f7a 100%);
      color: #ffffff !important;
      padding: 30px;
      flex: 1;
      position: relative;
      overflow: hidden;
    }
    
    .xs-calendar-section::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(36, 191, 230, 0.1);
    }
    
    .xs-calendar-section::after {
      content: "";
      position: absolute;
      bottom: -80px;
      left: -30px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: rgba(0, 195, 137, 0.1);
    }
    
    .xs-calendar-header {
      position: relative;
      z-index: 2;
      margin-bottom: 25px;
    }
    
    .xs-calendar-header h2 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    
    .xs-duration-badge {
      background: rgba(255, 255, 255, 0.15);
      padding: 8px 18px;
      border-radius: 20px;
      display: inline-block;
      font-weight: 600;
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .xs-calendar-container {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 20px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      position: relative;
      z-index: 2;
    }
    
    .xs-calendar-container label {
      display: block;
      margin-bottom: 15px;
      font-weight: 600;
      font-size: 1.1rem;
    }
    
    #xs-calendar {
      background: var(--xs-white);
      border-radius: 12px;
      padding: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .xs-calendar-navigation {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      padding: 0 5px;
    }
    
    .xs-nav-btn {
      background: none;
      border: none;
      color: var(--xs-primary);
      font-size: 1.2rem;
      cursor: pointer;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    
    .xs-nav-btn:hover {
      background: var(--xs-light-bg);
    }
    
    .xs-nav-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .xs-current-month {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--xs-primary);
    }
    
    .xs-calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 8px;
    }
    
    .xs-day-header {
      text-align: center;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--xs-primary);
      padding: 8px 0;
    }
    
    .xs-calendar-day {
      height: 40px;
      display: flex;
      color:#000000;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.2s;
      position: relative;
    }
    
    .xs-calendar-day.xs-disabled {
      background: #f5f5f5;
      color: #ccc;
      cursor: not-allowed;
      opacity: 0.5;
    }
    
    .xs-calendar-day.xs-weekend {
      background: #ffe6e6;
      color: #999;
      cursor: not-allowed;
    }
    
    .xs-calendar-day.xs-weekend::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
      width: 1px;
      height: 80%;
      background: #ccc;
    }
    
    .xs-calendar-day:hover:not(.xs-empty):not(.xs-disabled) {
      background: var(--xs-light-bg);
    }
    
    .xs-calendar-day.xs-empty {
      cursor: default;
      background: transparent;
    }
    
    .xs-calendar-day.xs-disabled {
      color: #ccc;
      cursor: not-allowed;
      opacity: 0.7;
    }
    
    .xs-calendar-day.xs-today {
      background: #e6f7ff;
      color: var(--xs-secondary);
      font-weight: 700;
    }
    
    .xs-calendar-day.xs-selected {
      background: var(--xs-secondary);
      color: var(--xs-white);
      box-shadow: 0 4px 8px rgba(36, 191, 230, 0.3);
    }
    
    .xs-booking-section {
      padding: 30px;
      flex: 1.2;
      display: flex;
      flex-direction: column;
    }
    
    .xs-step {
      display: none;
      flex: 1;
    }
    
    .xs-step.xs-active {
      display: flex;
      flex-direction: column;
    }
    
    .xs-step-header {
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid var(--xs-light-bg);
      position: relative;
    }
    
    .xs-step-header h3 {
      font-size: 1.5rem;
      color: var(--xs-primary);
      position: relative;
      display: inline-block;
    }
    
    .xs-step-header h3::after {
      content: "";
      position: absolute;
      bottom: -16px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--xs-secondary);
      border-radius: 3px;
    }
    
    .xs-timezone-selector {
      margin-bottom: 25px;
    }
    
    .xs-timezone-selector label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
    }
    
    .xs-timezone-selector select {
      width: 100%;
      padding: 12px 15px;
      border-radius: 10px;
      border: 1px solid var(--xs-border);
      background: var(--xs-white);
      font-family: 'MierB', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
    }
    
    .xs-timezone-selector select:focus {
      outline: none;
      border-color: var(--xs-secondary);
      box-shadow: 0 0 0 3px rgba(36, 191, 230, 0.2);
    }
    
    .xs-time-slots-container {
      margin-bottom: 20px;
    }
    
    .xs-time-slots-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: 8px;
      max-height: 300px;
      overflow-y: auto;
      padding: 5px;
    }
    
    .xs-time-slot {
      padding: 10px 5px;
      background: #f0f8fb;
      border: 1px solid var(--xs-border);
      border-radius: 8px;
      text-align: center;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 0.9rem;
    }
    
    .xs-time-slot:hover {
      background: #e1f3f9;
    }
    
    .xs-time-slot.xs-selected {
      background: var(--xs-secondary);
      color: var(--xs-white);
      border-color: var(--xs-secondary);
      box-shadow: 0 4px 8px rgba(36, 191, 230, 0.3);
    }
    
    .xs-time-slot.xs-unavailable {
      opacity: 0.5;
      cursor: not-allowed;
      text-decoration: line-through;
    }
    
    .xs-time-slot.xs-past {
      opacity: 0.4;
      cursor: not-allowed;
    }
    
    .xs-selection-confirm {
      background: #f0f8fb;
      padding: 18px;
      border-radius: 15px;
      margin-top: auto;
    }
    
    .xs-selected-time {
      font-weight: 600;
      margin-bottom: 15px;
      color: var(--xs-primary);
      font-size: 1.1rem;
      text-align: center;
    }
    
    .xs-confirm-btn {
      background: #24bfe6;
      color: var(--xs-white);
      border: none;
      padding: 14px 25px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    
    .xs-confirm-btn:hover {
      background: #003546;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 195, 137, 0.3);
    }
    
    .xs-confirm-btn:disabled {
      background: #ccc;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }
    
    .xs-booking-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
      flex: 1;
    }
    
    .xs-form-group {
      display: flex;
      flex-direction: column;
    }
    
    .xs-form-group label {
      margin-bottom: 8px;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    
    .xs-required::after {
      content: "*";
      color: var(--xs-error);
    }
    
    .xs-form-group input,
    .xs-form-group textarea {
      padding: 14px;
      border: 1px solid var(--xs-border);
      border-radius: 10px;
      font-family: 'MierB', sans-serif;
      font-size: 1rem;
      transition: all 0.3s;
    }
    
    .xs-form-group input:focus,
    .xs-form-group textarea:focus {
      outline: none;
      border-color: var(--xs-secondary);
      box-shadow: 0 0 0 3px rgba(36, 191, 230, 0.2);
    }
    
    .xs-form-buttons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .xs-form-btn {
      flex: 1;
      padding: 14px;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      font-size: 1rem;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    
    .xs-back-btn {
      background: #f0f8fb;
      color: var(--xs-primary);
      border: 1px solid var(--xs-border);
    }
    
    .xs-back-btn:hover {
      background: #e1f3f9;
    }
    
    .xs-submit-btn {
      background: var(--xs-primary);
      color: var(--xs-white);
      border: none;
    }
    
    .xs-submit-btn:hover {
      background: #002837;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 53, 70, 0.2);
    }
    
    .xs-loading {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: var(--xs-white);
      animation: xs-spin 1s ease-in-out infinite;
    }
    
    @keyframes xs-spin {
      to { transform: rotate(360deg); }
    }
    
    .xs-success-section {
      display: none;
      text-align: center;
      padding: 40px 20px;
      flex: 1;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    
    .xs-success-icon {
      width: 80px;
      height: 80px;
      background: #24bfe6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
    }
    
    .xs-success-icon i {
      color: var(--xs-white);
      font-size: 2.5rem;
    }
    
    .xs-success-section h2 {
      font-size: 2rem;
      color: var(--xs-primary);
      margin-bottom: 15px;
    }
    
    .xs-success-section p {
      font-size: 1.1rem;
      color: #5a7d8a;
      max-width: 500px;
      margin-bottom: 30px;
    }
    
    .xs-event-details {
      background: #f0f8fb;
      border-radius: 15px;
      padding: 20px;
      width: 100%;
      max-width: 400px;
      margin: 20px auto;
      text-align: left;
    }
    
    .xs-detail-item {
      display: flex;
      margin-bottom: 15px;
    }
    
    .xs-detail-label {
      font-weight: 600;
      width: 120px;
      color: var(--xs-primary);
    }
    
    .xs-detail-value {
      flex: 1;
    }
    
    .xs-new-booking-btn {
      background: #003546;
      color: var(--xs-white);
      border: none;
      padding: 14px 30px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    
    .xs-new-booking-btn:hover {
      background: #24bfe6;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 195, 137, 0.3);
    }
    
    .xs-error-message {
      color: var(--xs-error);
      font-size: 0.9rem;
      margin-top: 5px;
      display: none;
    }
    
    .xs-error {
      border-color: var(--xs-error) !important;
    }
    
    .xs-error ~ .xs-error-message {
      display: block;
    }
    
    .xs-rep-info {
      background: #e3f7ff;
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 20px;
      display: none;
    }
    
    .xs-rep-info.xs-active {
      display: block;
    }
    
    .xs-rep-text {
      font-weight: 600;
      color: var(--xs-primary);
    }
    
    .xs-rep-name {
      color: var(--xs-secondary);
    }
    
    @media (max-width: 600px) {
      .xs-calendar-grid {
        gap: 4px;
      }
      
      .xs-calendar-day {
        height: 35px;
        font-size: 0.9rem;
      }
      
      .xs-time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }
  </style>






.xs-time-slots-container label::after {
    content: "(9AM-7PM)";
    font-weight: normal;
    margin-left: 5px;
    opacity: 0.7;
}

/* Add responsive styles */
@media (max-width: 768px) {
    .xs-scheduler-card {
        flex-direction: column;
    }
    
    .xs-calendar-section, .xs-booking-section {
        flex: 1 1 100%;
    }
    
    .xs-time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .xs-time-slots-grid {
        grid-template-columns: 1fr;
    }
}