/* Frontend Styles for Slot Pilot - Modern & Premium */

:root {
    --sp-primary: #2563eb;
    --sp-primary-hover: #1d4ed8;
    --sp-bg: rgba(255, 255, 255, 0.8);
    --sp-border: rgba(255, 255, 255, 0.3);
    --sp-text: #1f2937;
    --sp-text-muted: #6b7280;
    --sp-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    --sp-radius: 16px;
    --sp-input-bg: #f9fafb;
    --sp-input-border: #e5e7eb;
}

.slot-pilot-wrapper {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--sp-text);
    position: relative;
}

body:not(.wp-admin):not(.sp-fullpage-body) .slot-pilot-wrapper {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

body.slot-pilot-public-page:not(.wp-admin):not(.sp-fullpage-body) .slot-pilot-wrapper.sp-customer-page-wrap,
body.slot-pilot-public-page:not(.wp-admin):not(.sp-fullpage-body) .slot-pilot-wrapper.sp-payment-wrapper {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

body.slot-pilot-public-page main,
body.slot-pilot-public-page .site-main,
body.slot-pilot-public-page .content-area,
body.slot-pilot-public-page .entry-content,
body.slot-pilot-public-page .page-content {
    background: var(--be-bg, var(--sp-bg)) !important;
}

.sp-form-container {
    background: var(--sp-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--sp-border);
    border-radius: var(--sp-radius);
    padding: 30px;
    box-shadow: var(--sp-shadow);
    position: relative;
    overflow: hidden;
}

/* Forms */
.sp-form-title {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 600;
    color: var(--sp-text);
    text-align: center;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.sp-form-group {
    margin-bottom: 20px;
}

.sp-form-row {
    display: flex;
    gap: 20px;
}

.sp-form-row .sp-form-group {
    flex: 1;
}

.sp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--sp-text);
}

.sp-input {
    width: 100%;
    padding: 12px 16px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    font-size: 15px !important;
    transition: all 0.2s ease;
    box-sizing: border-box !important;
    font-family: inherit;
    color: #1f2937 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    height: 46px !important;
}

/* Force options inside select to have dark text */
.sp-input option {
    color: #1f2937 !important;
    background: #ffffff !important;
}

/* Add custom dropdown arrow for select since appearance: none hides it */
select.sp-input {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%236b7280%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px top 50%;
    background-size: 12px auto;
}

.sp-input:focus {
    outline: none;
    border-color: var(--sp-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: #fff;
}

/* Buttons */
.sp-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.sp-btn-primary {
    background: var(--sp-primary);
    color: #fff;
}

.sp-btn-primary:hover {
    background: var(--sp-primary-hover);
    transform: translateY(-1px);
}

.sp-btn-primary:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.sp-btn-secondary {
    background: #f3f4f6;
    color: #4b5563;
    margin-right: 10px;
}

.sp-btn-secondary:hover {
    background: #e5e7eb;
}

/* Slots Grid */
.sp-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.sp-slot {
    padding: 10px;
    text-align: center;
    border: 1px solid var(--sp-input-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

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

.sp-slot.selected {
    background: var(--sp-primary);
    color: #fff;
    border-color: var(--sp-primary);
}

/* Loader */
.sp-loader-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--sp-radius);
}

.sp-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(37, 99, 235, 0.2);
    border-top-color: var(--sp-primary);
    border-radius: 50%;
    animation: spSpin 1s linear infinite;
}

@keyframes spSpin {
    to { transform: rotate(360deg); }
}

.sp-success-icon {
    font-size: 60px;
    color: #10b981;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sp-form-row {
        flex-direction: column;
        gap: 0;
    }
    .sp-stepper {
        flex-direction: column;
        gap: 10px;
    }
    .sp-stepper::before {
        display: none;
    }
}

/* ===== BookEase Pro booking form visual refresh - presentation only ===== */
.slot-pilot-wrapper {
    --be-bg: #080b12;
    --be-s1: #0d1117;
    --be-s2: #131b27;
    --be-s3: #1a2335;
    --be-b1: #1e2d45;
    --be-b2: #253650;
    --be-lime: var(--sp-button, #b8f635);
    --be-lime2: var(--sp-button-hover, #ccff44);
    --be-teal: #22d3a5;
    --be-rose: #f05575;
    --be-amber: #f5a623;
    --be-white: #e8edf5;
    --be-muted: #7a8ba8;
    --be-dim: #3a4d68;
    max-width: 820px !important;
    color: var(--be-white) !important;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.slot-pilot-wrapper .sp-form-container,
.slot-pilot-wrapper .glassmorphism {
    background: var(--be-s1) !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 18px !important;
    overflow: visible !important;
}

.slot-pilot-wrapper .sp-form-title {
    margin: -18px -18px 18px !important;
    padding: 13px 16px !important;
    border-bottom: 1px solid var(--be-b1) !important;
    color: var(--be-white) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-align: left !important;
}

.slot-pilot-wrapper label {
    color: var(--be-white) !important;
    font-size: 9.5px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
}

.slot-pilot-wrapper input,
.slot-pilot-wrapper select,
.slot-pilot-wrapper textarea {
    background: var(--be-s2) !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 7px !important;
    color: var(--be-white) !important;
    font-size: 12.5px !important;
    box-shadow: none !important;
}

.slot-pilot-wrapper input[type="text"],
.slot-pilot-wrapper input[type="email"],
.slot-pilot-wrapper input[type="tel"],
.slot-pilot-wrapper input[type="number"],
.slot-pilot-wrapper input[type="time"],
.slot-pilot-wrapper input[type="date"],
.slot-pilot-wrapper input[type="search"],
.slot-pilot-wrapper select,
.slot-pilot-wrapper .sp-service-dropdown-button {
    height: 46px !important;
    min-height: 46px !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
}

.slot-pilot-wrapper textarea {
    min-height: 46px !important;
    box-sizing: border-box !important;
}

.slot-pilot-wrapper input:focus,
.slot-pilot-wrapper select:focus,
.slot-pilot-wrapper textarea:focus {
    border-color: var(--be-lime) !important;
    outline: none !important;
    box-shadow: none !important;
}

.slot-pilot-wrapper option {
    background: var(--be-s2) !important;
    color: var(--be-white) !important;
}

.slot-pilot-wrapper .sp-native-service-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.slot-pilot-wrapper .sp-service-field {
    position: relative !important;
}

.slot-pilot-wrapper .sp-service-field.open {
    z-index: 1000 !important;
}

.slot-pilot-wrapper .sp-service-dropdown-button {
    position: relative !important;
    width: 100% !important;
    height: 46px !important;
    padding: 10px 34px 10px 14px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-family: inherit !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-align: left !important;
    cursor: pointer !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
}

.slot-pilot-wrapper .sp-service-dropdown-button::after {
    content: "v" !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #374151 !important;
    font-size: 11px !important;
}

.slot-pilot-wrapper .sp-service-field.open .sp-service-dropdown-button {
    border-color: var(--be-lime) !important;
    outline: none !important;
    box-shadow: none !important;
}

.slot-pilot-wrapper .sp-service-field.open .sp-service-dropdown-button::after {
    transform: translateY(-50%) rotate(180deg) !important;
}

.slot-pilot-wrapper #sp-booking-date,
.slot-pilot-wrapper .sp-reschedule-date {
    color: #111827 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper #sp-booking-date::placeholder,
.slot-pilot-wrapper .sp-reschedule-date::placeholder {
    color: #111827 !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    opacity: 1 !important;
}

.slot-pilot-wrapper .sp-service-dropdown-menu {
    display: none !important;
    position: absolute !important;
    z-index: 1001 !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    width: calc(200% + 16px) !important;
    max-height: 230px !important;
    overflow: auto !important;
    padding: 8px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s1) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.42) !important;
    box-sizing: border-box !important;
}

.slot-pilot-wrapper .sp-service-field.open .sp-service-dropdown-menu {
    display: grid !important;
    gap: 6px !important;
}

.slot-pilot-wrapper .sp-service-dropdown-option {
    width: 100% !important;
    min-height: 36px !important;
    padding: 8px 10px !important;
    border: 1px solid transparent !important;
    border-radius: 6px !important;
    background: transparent !important;
    color: var(--be-white) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-align: left !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper .sp-service-dropdown-option:hover,
.slot-pilot-wrapper .sp-service-dropdown-option.active {
    background: var(--be-s2) !important;
    border-color: var(--be-b1) !important;
}

.slot-pilot-wrapper .sp-service-dropdown-option.is-disabled {
    color: var(--be-muted) !important;
    cursor: default !important;
}

.slot-pilot-wrapper .sp-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)) !important;
    gap: 7px !important;
}

.slot-pilot-wrapper .sp-slot {
    background: var(--be-s2) !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 7px !important;
    color: var(--be-white) !important;
    padding: 8px !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
}

.slot-pilot-wrapper .sp-slot:hover {
    border-color: var(--be-lime) !important;
    color: var(--be-lime) !important;
}

.slot-pilot-wrapper .sp-slot.selected {
    background: color-mix(in srgb, var(--sp-button, var(--be-lime)) 12%, transparent) !important;
    border-color: var(--be-lime) !important;
    color: var(--be-lime) !important;
}

.slot-pilot-wrapper .sp-btn,
.slot-pilot-wrapper .sp-btn-primary,
.slot-pilot-wrapper #sp-submit-booking {
    min-height: 34px !important;
    padding: 0 17px !important;
    border-radius: 8px !important;
    background: var(--sp-button, var(--be-lime)) !important;
    color: var(--sp-button-text, var(--be-button-text, #000)) !important;
    border: 1px solid var(--sp-button, var(--be-lime)) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    box-shadow: none !important;
}

.slot-pilot-wrapper .sp-btn:hover,
.slot-pilot-wrapper .sp-btn-primary:hover,
.slot-pilot-wrapper #sp-submit-booking:hover {
    background: var(--sp-button, var(--be-lime)) !important;
    background-color: var(--sp-button, var(--be-lime)) !important;
    background-image: none !important;
    border-color: var(--sp-button, var(--be-lime)) !important;
    color: var(--sp-button-text, var(--be-button-text, #000)) !important;
    transform: translateY(-2px) scale(1.015) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.22), 0 0 0 3px color-mix(in srgb, var(--sp-button, var(--be-lime)) 18%, transparent) !important;
}

.slot-pilot-wrapper .sp-loader-overlay {
    background: rgba(8,11,18,.72) !important;
    border-radius: 10px !important;
}

.slot-pilot-wrapper .sp-spinner {
    border-color: color-mix(in srgb, var(--sp-button, var(--be-lime)) 20%, transparent) !important;
    border-top-color: var(--be-lime) !important;
}

.slot-pilot-wrapper #sp-success-message h3 {
    color: var(--be-white) !important;
}

.slot-pilot-wrapper #sp-success-message p,
.slot-pilot-wrapper .sp-text-muted {
    color: var(--be-muted) !important;
}

.slot-pilot-wrapper .sp-success-icon {
    color: var(--be-teal) !important;
    font-size: 42px !important;
}

.slot-pilot-wrapper .sp-no-slots-box {
    grid-column: 1 / -1 !important;
    padding: 12px 14px !important;
    border: 1px solid color-mix(in srgb, var(--be-lime) 30%, var(--be-b1) 70%) !important;
    border-radius: 8px !important;
    background: color-mix(in srgb, var(--be-lime) 8%, var(--be-s1) 92%) !important;
    color: var(--be-muted) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

.slot-pilot-wrapper .sp-no-slots-box strong {
    color: var(--be-lime) !important;
}

.slot-pilot-wrapper .sp-custom-notice {
    display: none;
    position: fixed !important;
    z-index: 99999 !important;
    right: 22px !important;
    bottom: 22px !important;
    max-width: min(360px, calc(100vw - 44px)) !important;
    padding: 12px 14px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s1) !important;
    color: var(--be-white) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.36) !important;
}

.slot-pilot-wrapper .sp-custom-notice.success {
    border-color: color-mix(in srgb, var(--be-teal) 45%, var(--be-b1) 55%) !important;
}

.slot-pilot-wrapper .sp-custom-notice.error {
    border-color: color-mix(in srgb, var(--be-rose) 45%, var(--be-b1) 55%) !important;
}

.slot-pilot-wrapper .sp-confirm-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    background: rgba(3,7,18,.72) !important;
    backdrop-filter: blur(5px) !important;
}

.slot-pilot-wrapper .sp-confirm-card {
    width: min(420px, 100%) !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 12px !important;
    background: var(--be-s1) !important;
    color: var(--be-white) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.55) !important;
    padding: 18px !important;
}

.slot-pilot-wrapper .sp-confirm-card h3 {
    margin: 0 0 8px !important;
    color: var(--be-white) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-confirm-card p {
    margin: 0 !important;
    color: var(--be-muted) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.slot-pilot-wrapper .sp-confirm-actions {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    margin-top: 16px !important;
}

.slot-pilot-wrapper .sp-confirm-cancel,
.slot-pilot-wrapper .sp-client-cancel-booking,
.slot-pilot-wrapper button[class*="cancel"],
.slot-pilot-wrapper a[class*="cancel"],
.slot-pilot-wrapper button[class*="delete"],
.slot-pilot-wrapper a[class*="delete"],
.slot-pilot-wrapper button[class*="reject"],
.slot-pilot-wrapper a[class*="reject"] {
    background: var(--be-rose) !important;
    background-color: var(--be-rose) !important;
    border-color: var(--be-rose) !important;
    color: var(--sp-button-text, var(--be-button-text, #000)) !important;
}

.slot-pilot-wrapper .sp-confirm-cancel:hover,
.slot-pilot-wrapper .sp-client-cancel-booking:hover,
.slot-pilot-wrapper button[class*="cancel"]:hover,
.slot-pilot-wrapper a[class*="cancel"]:hover,
.slot-pilot-wrapper button[class*="delete"]:hover,
.slot-pilot-wrapper a[class*="delete"]:hover,
.slot-pilot-wrapper button[class*="reject"]:hover,
.slot-pilot-wrapper a[class*="reject"]:hover {
    color: var(--sp-button-text, var(--be-button-text, #000)) !important;
}

.slot-pilot-wrapper .sp-manage-booking-wrap {
    margin-top: 16px !important;
}

.slot-pilot-wrapper .sp-booking-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    margin-bottom: 18px !important;
}

.slot-pilot-wrapper .sp-booking-header-row .sp-form-title {
    margin: 0 !important;
}

.slot-pilot-wrapper .sp-customer-top-login,
.slot-pilot-wrapper .sp-customer-top-menu summary {
    min-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 0 14px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s2) !important;
    color: var(--be-white) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper .sp-customer-top-login:hover,
.slot-pilot-wrapper .sp-customer-top-menu summary:hover {
    border-color: var(--sp-button, var(--be-lime)) !important;
    transform: translateY(-1px) !important;
}

.slot-pilot-wrapper .sp-customer-top-menu {
    position: relative !important;
}

.slot-pilot-wrapper .sp-customer-top-menu summary {
    list-style: none !important;
}

.slot-pilot-wrapper .sp-customer-top-menu summary::-webkit-details-marker {
    display: none !important;
}

.slot-pilot-wrapper .sp-customer-top-avatar {
    width: 24px !important;
    height: 24px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--sp-button, var(--be-lime)) !important;
    color: var(--sp-button-text, #000) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-customer-top-arrow {
    color: var(--be-muted) !important;
    font-size: 11px !important;
}

.slot-pilot-wrapper .sp-customer-top-dropdown {
    position: absolute !important;
    right: 0 !important;
    top: calc(100% + 8px) !important;
    z-index: 50 !important;
    min-width: 188px !important;
    padding: 8px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s1) !important;
    box-shadow: 0 18px 34px rgba(0,0,0,.36) !important;
}

.slot-pilot-wrapper .sp-customer-top-dropdown a,
.slot-pilot-wrapper .sp-customer-top-dropdown button {
    width: 100% !important;
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 10px !important;
    border: 0 !important;
    border-radius: 7px !important;
    background: transparent !important;
    color: var(--be-white) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-align: left !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper .sp-customer-top-dropdown a:hover,
.slot-pilot-wrapper .sp-customer-top-dropdown button:hover {
    background: color-mix(in srgb, var(--sp-button, var(--be-lime)) 16%, transparent) !important;
}

.slot-pilot-wrapper .sp-customer-login-prompt {
    display: grid !important;
    gap: 8px !important;
    align-items: center !important;
    justify-items: start !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 10px !important;
    background: var(--be-s2) !important;
    padding: 16px !important;
}

.slot-pilot-wrapper .sp-customer-login-prompt strong {
    color: var(--be-white) !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-customer-login-prompt span {
    color: var(--be-muted) !important;
    font-size: 13px !important;
}

.slot-pilot-wrapper .sp-customer-account-wrap {
    margin-top: 16px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap {
    max-width: 760px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card {
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: 54px 48px 46px !important;
    border: 1px solid color-mix(in srgb, var(--be-b1) 80%, var(--be-white) 20%) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 50% -12%, color-mix(in srgb, var(--sp-button, var(--be-lime)) 8%, transparent), transparent 34%),
        linear-gradient(145deg, color-mix(in srgb, var(--be-s2) 42%, transparent), var(--be-s1)) !important;
    box-shadow: 0 28px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04) !important;
}

.slot-pilot-wrapper .sp-auth-card-head {
    text-align: center !important;
    margin-bottom: 34px !important;
}

.slot-pilot-wrapper .sp-auth-title {
    margin: 0 !important;
    color: var(--be-white) !important;
    font-size: 44px !important;
    line-height: 1.12 !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
}

.slot-pilot-wrapper .sp-auth-subtitle {
    margin: 18px 0 0 !important;
    color: var(--be-muted) !important;
    font-size: 21px !important;
    line-height: 1.45 !important;
    font-weight: 700 !important;
}

.slot-pilot-wrapper .sp-customer-auth-tabs {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-bottom: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-auth-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    min-height: 66px !important;
    margin: 0 0 50px !important;
    padding: 5px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 14px !important;
    background: color-mix(in srgb, var(--be-s2) 58%, transparent) !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-auth-tabs .sp-manage-method {
    width: 100% !important;
    min-height: 56px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: transparent !important;
    color: var(--be-white) !important;
    font-size: 20px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-auth-tabs .sp-manage-method.active {
    background: linear-gradient(180deg, color-mix(in srgb, var(--sp-button, var(--be-lime)) 94%, #fff 6%), var(--sp-button, var(--be-lime))) !important;
    color: var(--sp-button-text, #000) !important;
    box-shadow: 0 12px 24px color-mix(in srgb, var(--sp-button, var(--be-lime)) 18%, transparent) !important;
}

.slot-pilot-wrapper .sp-auth-divider {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 22px !important;
    margin: 0 0 34px !important;
    color: var(--be-muted) !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
}

.slot-pilot-wrapper .sp-auth-divider:before,
.slot-pilot-wrapper .sp-auth-divider:after {
    content: "" !important;
    height: 1px !important;
    background: var(--be-b1) !important;
}

.slot-pilot-wrapper .sp-customer-auth-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: end !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-customer-auth-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-manage-field {
    display: grid !important;
    gap: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-manage-field label {
    margin: 0 !important;
    color: var(--be-muted) !important;
    font-size: 17px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .11em !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card input {
    width: 100% !important;
    height: 70px !important;
    padding: 0 22px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 10px !important;
    background: color-mix(in srgb, var(--be-s2) 78%, transparent) !important;
    color: var(--be-white) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03) !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card input::placeholder {
    color: color-mix(in srgb, var(--be-muted) 70%, transparent) !important;
    font-weight: 700 !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card input:focus {
    border-color: var(--sp-button, var(--be-lime)) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--sp-button, var(--be-lime)) 16%, transparent) !important;
}

.slot-pilot-wrapper .sp-customer-auth-submit {
    height: 46px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-customer-auth-submit {
    width: 100% !important;
    height: 70px !important;
    margin-top: 10px !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, color-mix(in srgb, var(--sp-button, var(--be-lime)) 96%, #fff 4%), var(--sp-button, var(--be-lime))) !important;
    border: 1px solid var(--sp-button, var(--be-lime)) !important;
    color: var(--sp-button-text, #000) !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-auth-hint {
    margin: -8px 0 0 !important;
    color: var(--be-muted) !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    font-weight: 700 !important;
}

.slot-pilot-wrapper .sp-auth-bottom {
    margin: 34px 0 0 !important;
    color: var(--be-muted) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.slot-pilot-wrapper .sp-auth-bottom button {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--sp-button, var(--be-lime)) !important;
    font: inherit !important;
    font-weight: 900 !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper .sp-customer-forgot-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 32px !important;
    margin-top: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--sp-button, var(--be-lime)) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-forgot-link {
    width: 100% !important;
    min-height: 40px !important;
    margin-top: 22px !important;
    font-size: 16px !important;
}

.slot-pilot-wrapper .sp-customer-back-login {
    height: 46px !important;
    border: 1px solid var(--be-b1) !important;
    background: var(--be-s2) !important;
    color: var(--be-white) !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-back-login {
    height: 56px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-customer-account-card,
.slot-pilot-wrapper .sp-customer-booking-card {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    border: 1px solid var(--be-b1) !important;
    background: var(--be-s2) !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
}

.slot-pilot-wrapper .sp-customer-account-card strong,
.slot-pilot-wrapper .sp-customer-booking-card strong {
    display: block !important;
    color: var(--be-white) !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-customer-account-card span,
.slot-pilot-wrapper .sp-customer-booking-card span {
    display: block !important;
    color: var(--be-muted) !important;
    font-size: 12px !important;
    margin-top: 3px !important;
}

.slot-pilot-wrapper .sp-customer-account-bookings {
    margin-top: 14px !important;
}

.slot-pilot-wrapper .sp-customer-booking-list {
    display: grid !important;
    gap: 10px !important;
}

.slot-pilot-wrapper .sp-manage-methods {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
}

.slot-pilot-wrapper .sp-manage-method {
    min-height: 32px !important;
    padding: 0 12px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s2) !important;
    color: var(--be-white) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper .sp-manage-method.active {
    background: var(--sp-button, var(--be-lime)) !important;
    color: var(--sp-button-text, var(--be-button-text, #000)) !important;
    border-color: var(--sp-button, var(--be-lime)) !important;
}

.slot-pilot-wrapper #sp-manage-booking-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
    align-items: end !important;
}

.slot-pilot-wrapper .sp-manage-fields {
    display: none !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
    align-items: end !important;
}

.slot-pilot-wrapper .sp-manage-fields.active {
    display: grid !important;
}

.slot-pilot-wrapper .sp-manage-fields[data-method-panel="name_date"] {
    grid-template-columns: minmax(0, 1fr) minmax(180px, .75fr) !important;
}

.slot-pilot-wrapper .sp-manage-field {
    display: grid !important;
    gap: 7px !important;
}

.slot-pilot-wrapper .sp-manage-submit {
    min-width: 132px !important;
    height: 46px !important;
    align-self: end !important;
}

.slot-pilot-wrapper .sp-manage-result {
    margin-top: 18px !important;
}

.slot-pilot-wrapper .sp-manage-status-card,
.slot-pilot-wrapper .sp-manage-alert {
    border: 1px solid var(--be-b1) !important;
    border-radius: 10px !important;
    background: var(--be-s2) !important;
    padding: 16px !important;
}

.slot-pilot-wrapper .sp-manage-status-card p {
    margin: 8px 0 !important;
    color: var(--be-white) !important;
    font-size: 13px !important;
}

.slot-pilot-wrapper .sp-manage-status-card strong {
    color: var(--be-white) !important;
}

.slot-pilot-wrapper .sp-manage-status {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 30px !important;
    padding: 0 10px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    background: rgba(245,166,35,.14) !important;
    color: var(--be-white) !important;
}

.slot-pilot-wrapper .sp-manage-status.confirmed {
    background: rgba(34,211,165,.14) !important;
    color: var(--be-white) !important;
}

.slot-pilot-wrapper .sp-manage-status.cancelled {
    background: rgba(240,85,117,.14) !important;
    color: var(--be-white) !important;
}

.slot-pilot-wrapper .sp-manage-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 14px !important;
}

.slot-pilot-wrapper .sp-client-reschedule-form {
    display: grid;
    gap: 8px;
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px solid var(--be-b1) !important;
}

.slot-pilot-wrapper .sp-client-reschedule-slots {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)) !important;
    gap: 7px !important;
    min-height: 38px !important;
}

.slot-pilot-wrapper .sp-client-reschedule-slot {
    min-height: 34px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 7px !important;
    background: var(--be-s2) !important;
    color: var(--be-white) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: border-color .15s ease, color .15s ease, background .15s ease, transform .15s ease !important;
}

.slot-pilot-wrapper .sp-client-reschedule-slot:hover {
    border-color: var(--be-lime) !important;
    color: var(--be-lime) !important;
    transform: translateY(-1px) !important;
}

.slot-pilot-wrapper .sp-client-reschedule-slot.selected {
    background: color-mix(in srgb, var(--sp-button, var(--be-lime)) 12%, transparent) !important;
    border-color: var(--be-lime) !important;
    color: var(--be-lime) !important;
}

.slot-pilot-wrapper .sp-client-reschedule-loading {
    grid-column: 1 / -1 !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 1px solid color-mix(in srgb, var(--be-lime) 30%, var(--be-b1) 70%) !important;
    border-radius: 8px !important;
    background: color-mix(in srgb, var(--be-lime) 8%, var(--be-s1) 92%) !important;
    color: var(--be-white) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.slot-pilot-datepicker.ui-datepicker {
    z-index: 2147483647 !important;
    width: 290px !important;
    max-height: calc(100vh - 16px) !important;
    overflow: auto !important;
    padding: 12px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 10px !important;
    background: var(--be-s1) !important;
    color: var(--be-white) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.36) !important;
    font-family: inherit !important;
}

.slot-pilot-datepicker-floating.ui-datepicker {
    position: fixed !important;
}

.slot-pilot-datepicker-in-dialog.ui-datepicker {
    position: absolute !important;
}

.slot-pilot-datepicker .ui-datepicker-header {
    position: relative !important;
    display: block !important;
    min-height: 42px !important;
    margin-bottom: 8px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: var(--be-s2) !important;
    color: var(--be-white) !important;
}

.slot-pilot-datepicker .ui-datepicker-title {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    min-height: 42px !important;
    margin: 0 44px !important;
    color: var(--be-white) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.slot-pilot-datepicker .ui-datepicker-title select,
.slot-pilot-datepicker .ui-datepicker-month,
.slot-pilot-datepicker .ui-datepicker-year {
    width: auto !important;
    min-width: 92px !important;
    height: 30px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 5px 24px 5px 9px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 7px !important;
    background: var(--be-s1) !important;
    color: var(--be-white) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    outline: none !important;
    box-shadow: none !important;
}

.slot-pilot-datepicker .ui-datepicker-year {
    min-width: 74px !important;
}

.slot-pilot-datepicker .ui-datepicker-title select:focus {
    border-color: var(--be-lime) !important;
}

.slot-pilot-datepicker .ui-datepicker-title option {
    background: var(--be-s1) !important;
    color: var(--be-white) !important;
}

.slot-pilot-datepicker .ui-datepicker-prev,
.slot-pilot-datepicker .ui-datepicker-next {
    position: absolute !important;
    top: 50% !important;
    width: 28px !important;
    height: 28px !important;
    margin-top: -14px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 7px !important;
    background: color-mix(in srgb, var(--be-white) 8%, transparent) !important;
    cursor: pointer !important;
    text-indent: 0 !important;
}

.slot-pilot-datepicker .ui-datepicker-prev {
    left: 10px !important;
}

.slot-pilot-datepicker .ui-datepicker-next {
    right: 10px !important;
}

.slot-pilot-datepicker .ui-datepicker-prev span,
.slot-pilot-datepicker .ui-datepicker-next span {
    display: none !important;
}

.slot-pilot-datepicker .ui-datepicker-prev::before,
.slot-pilot-datepicker .ui-datepicker-next::before {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--be-white) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.slot-pilot-datepicker .ui-datepicker-prev::before {
    content: "‹" !important;
}

.slot-pilot-datepicker .ui-datepicker-next::before {
    content: "›" !important;
}

.slot-pilot-datepicker .ui-datepicker-prev::before {
    content: "\2039" !important;
}

.slot-pilot-datepicker .ui-datepicker-next::before {
    content: "\203A" !important;
}

.slot-pilot-datepicker table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 4px !important;
    margin: 0 !important;
}

.slot-pilot-datepicker th {
    padding: 4px 0 6px !important;
    color: var(--be-muted) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.slot-pilot-datepicker td {
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.slot-pilot-datepicker td a,
.slot-pilot-datepicker td span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 30px !important;
    border: 1px solid transparent !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: var(--be-white) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-align: center !important;
    text-decoration: none !important;
}

.slot-pilot-datepicker td a:hover,
.slot-pilot-datepicker .ui-datepicker-current-day a {
    border-color: var(--be-lime) !important;
    background: var(--be-lime) !important;
    color: var(--be-button-text, #000) !important;
}

.slot-pilot-datepicker td.sp-off-day span,
.slot-pilot-datepicker td.ui-datepicker-unselectable span {
    color: color-mix(in srgb, var(--be-muted) 45%, transparent) !important;
    opacity: .45 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}

@media (max-width: 720px) {
    .slot-pilot-wrapper .sp-service-dropdown-menu {
        width: 100% !important;
    }

    .slot-pilot-wrapper #sp-manage-booking-form,
    .slot-pilot-wrapper .sp-manage-fields[data-method-panel="name_date"] {
        grid-template-columns: 1fr !important;
    }

    .slot-pilot-wrapper .sp-manage-submit {
        width: 100% !important;
    }
}

.slot-pilot-wrapper.sp-payment-wrapper {
    max-width: 580px !important;
    margin: 16px auto !important;
}

.slot-pilot-wrapper .sp-payment-container {
    overflow: visible !important;
    padding: 18px 22px !important;
}

.slot-pilot-wrapper .sp-payment-container .sp-form-title {
    margin: 0 0 12px !important;
    font-size: 18px !important;
    text-align: left !important;
}

.slot-pilot-wrapper .sp-payment-container > .sp-no-slots-box:only-of-type {
    margin: 0 !important;
}

.slot-pilot-wrapper .sp-payment-summary {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
}

.slot-pilot-wrapper .sp-payment-summary > div {
    min-height: 58px !important;
    padding: 10px 12px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s1) !important;
}

.slot-pilot-wrapper .sp-payment-summary span,
.slot-pilot-wrapper .sp-payment-field span {
    display: block !important;
    margin-bottom: 6px !important;
    color: var(--be-muted) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

.slot-pilot-wrapper .sp-payment-summary strong {
    color: var(--be-white) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-payment-field {
    display: block !important;
    margin-bottom: 12px !important;
}

.slot-pilot-wrapper .sp-payment-field input,
.slot-pilot-wrapper .sp-payment-field select,
.slot-pilot-wrapper .sp-payment-field textarea {
    width: 100% !important;
    min-height: 42px !important;
    padding: 10px 12px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s2) !important;
    color: var(--be-white) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.slot-pilot-wrapper .sp-payment-field textarea {
    min-height: 86px !important;
    resize: vertical !important;
}

.slot-pilot-wrapper .sp-payment-choice-field > span {
    margin-bottom: 8px !important;
}

.slot-pilot-wrapper .sp-payment-choice-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.slot-pilot-wrapper .sp-payment-choice-card {
    min-height: 54px !important;
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: var(--be-s1) !important;
    color: var(--be-white) !important;
    cursor: pointer !important;
}

.slot-pilot-wrapper .sp-payment-choice-card:has(input:checked) {
    border-color: var(--be-lime) !important;
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--be-lime) 35%, transparent) !important;
}

.slot-pilot-wrapper .sp-payment-field .sp-payment-choice-card input {
    width: 16px !important;
    max-width: 16px !important;
    min-height: 16px !important;
    height: 16px !important;
    padding: 0 !important;
    margin: 0 !important;
    accent-color: var(--be-lime) !important;
}

.slot-pilot-wrapper .sp-payment-choice-card strong {
    color: var(--be-white) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.slot-pilot-wrapper .sp-payment-choice-card small {
    color: var(--be-muted) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-align: right !important;
}

.slot-pilot-wrapper .sp-payment-field input:focus,
.slot-pilot-wrapper .sp-payment-field select:focus,
.slot-pilot-wrapper .sp-payment-field textarea:focus {
    border-color: var(--be-lime) !important;
}

.slot-pilot-wrapper .sp-payment-method-details {
    margin: 0 0 12px !important;
    padding: 12px 14px !important;
    border: 1px solid color-mix(in srgb, var(--be-lime) 28%, var(--be-b1) 72%) !important;
    border-radius: 8px !important;
    background: color-mix(in srgb, var(--be-lime) 8%, var(--be-s1) 92%) !important;
    color: var(--be-white) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.slot-pilot-wrapper .sp-payment-method-details p {
    margin: 0 0 6px !important;
    color: var(--be-white) !important;
}

.slot-pilot-wrapper .sp-payment-method-details p:last-child {
    margin-bottom: 0 !important;
}

.slot-pilot-wrapper .sp-payment-status {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
    padding: 4px 9px !important;
    border-radius: 999px !important;
    background: color-mix(in srgb, var(--be-lime) 12%, var(--be-s2) 88%) !important;
    color: var(--be-white) !important;
}

@media (max-width: 720px) {
    .slot-pilot-wrapper .sp-payment-summary,
    .slot-pilot-wrapper .sp-payment-choice-grid {
        grid-template-columns: 1fr !important;
    }
}

.slot-pilot-wrapper :is(button, input[type="submit"], input[type="button"], .button, .sp-btn, .sp-btn-outline, .sp-manage-method, .sp-service-dropdown-button, .sp-slot, .sp-client-reschedule-slot, a[class*="button"], a[class*="btn"], a[class*="action"]):not(:disabled):not(.disabled):not([aria-disabled="true"]) {
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease !important;
    will-change: transform !important;
}

.slot-pilot-wrapper :is(button, input[type="submit"], input[type="button"], .button, .sp-btn, .sp-btn-outline, .sp-manage-method, .sp-service-dropdown-button, .sp-slot, .sp-client-reschedule-slot, a[class*="button"], a[class*="btn"], a[class*="action"]):not(:disabled):not(.disabled):not([aria-disabled="true"]):hover {
    transform: translateY(-1px) scale(1.015) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,.22) !important;
}

.slot-pilot-wrapper :is(button, input[type="submit"], input[type="button"], .button, .sp-btn, .sp-btn-outline, .sp-manage-method, .sp-service-dropdown-button, .sp-slot, .sp-client-reschedule-slot, a[class*="button"], a[class*="btn"], a[class*="action"]):not(:disabled):not(.disabled):not([aria-disabled="true"]):active {
    transform: translateY(0) scale(.995) !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap {
    max-width: 580px !important;
    margin-top: 16px !important;
    margin-bottom: 16px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card {
    max-width: 580px !important;
    padding: 22px 36px 20px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card-head {
    margin-bottom: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-title {
    font-size: 30px !important;
    line-height: 1.12 !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-subtitle {
    margin-top: 6px !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-auth-tabs {
    min-height: 42px !important;
    margin-bottom: 18px !important;
    padding: 3px !important;
    border-radius: 12px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-auth-tabs .sp-manage-method {
    min-height: 34px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-divider {
    gap: 12px !important;
    margin-bottom: 12px !important;
    font-size: 12px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-customer-auth-grid {
    gap: 10px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-manage-field {
    gap: 6px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-manage-field label {
    font-size: 12px !important;
    letter-spacing: .08em !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card input {
    height: 42px !important;
    padding: 0 14px !important;
    background: color-mix(in srgb, var(--be-s2) 78%, transparent) !important;
    color: var(--be-white) !important;
    font-size: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card input:-webkit-autofill,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card input:-webkit-autofill:hover,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--be-white) !important;
    caret-color: var(--be-white) !important;
    box-shadow: 0 0 0 1000px color-mix(in srgb, var(--be-s2) 78%, var(--be-bg) 22%) inset !important;
    border-color: var(--be-b1) !important;
    transition: background-color 9999s ease-out 0s !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-customer-auth-submit {
    height: 42px !important;
    margin-top: 2px !important;
    font-size: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-hint {
    margin: -2px 0 0 !important;
    font-size: 12px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-bottom {
    margin-top: 12px !important;
    font-size: 13px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-login-bottom {
    margin-top: 6px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card .sp-auth-divider {
    visibility: hidden !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-forgot-link {
    min-height: 24px !important;
    margin-top: 8px !important;
    font-size: 12px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-back-login {
    height: 48px !important;
    font-size: 14px !important;
}

@media (min-width: 721px) {
    .slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-register-form .sp-customer-auth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-register-form .sp-auth-hint,
    .slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-register-form .sp-customer-auth-submit {
        grid-column: 1 / -1 !important;
    }
}

.slot-pilot-wrapper.sp-customer-page-wrap > .sp-form-container,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-account-wrap,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-auth-card {
    width: 100% !important;
    max-width: 580px !important;
    margin: 0 auto !important;
    padding: 22px 28px 20px !important;
    border-radius: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-booking-header-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid var(--be-b1) !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-booking-header-row .sp-form-title,
.slot-pilot-wrapper.sp-customer-page-wrap > .sp-form-container > .sp-form-title {
    margin: 0 !important;
    color: var(--be-white) !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
    text-align: left !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-auth-grid,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-profile-form .sp-customer-auth-grid,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-set-password-form .sp-customer-auth-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-manage-field {
    display: grid !important;
    gap: 6px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-manage-field label {
    margin: 0 !important;
    color: var(--be-muted) !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap :is(input, select, textarea) {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 14px !important;
    border: 1px solid var(--be-b1) !important;
    border-radius: 8px !important;
    background: color-mix(in srgb, var(--be-s2) 78%, transparent) !important;
    color: var(--be-white) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    box-sizing: border-box !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap textarea {
    height: auto !important;
    min-height: 84px !important;
    padding-top: 10px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap :is(input, select, textarea):-webkit-autofill,
.slot-pilot-wrapper.sp-customer-page-wrap :is(input, select, textarea):-webkit-autofill:hover,
.slot-pilot-wrapper.sp-customer-page-wrap :is(input, select, textarea):-webkit-autofill:focus {
    -webkit-text-fill-color: var(--be-white) !important;
    caret-color: var(--be-white) !important;
    box-shadow: 0 0 0 1000px color-mix(in srgb, var(--be-s2) 78%, var(--be-bg) 22%) inset !important;
    border-color: var(--be-b1) !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-auth-submit,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-back-login {
    height: 42px !important;
    min-height: 42px !important;
    font-size: 14px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-manage-alert {
    margin: 0 !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-account-bookings {
    margin-top: 10px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-booking-list {
    gap: 8px !important;
}

.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-account-card,
.slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-booking-card {
    min-height: 52px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
}

@media (min-width: 721px) {
    .slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-profile-form .sp-customer-auth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-profile-form .sp-customer-auth-submit,
    .slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-set-password-form .sp-customer-auth-submit {
        grid-column: 1 / -1 !important;
    }

    .slot-pilot-wrapper.sp-customer-page-wrap .sp-customer-set-password-form .sp-customer-auth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}
