body {
    background-color: #F5F7F7 !important;
}

.subscription-main {
    max-width: 1255px;
    padding: 1rem;
    margin: auto;
}

/* Public subscriptions hero (converted from Tailwind utility classes) */
.public-subscription-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 1.5rem;
    text-align: center;
}
.public-subscription-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}
.public-subscription-hero__content {
    position: relative;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.public-subscription-hero__title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}
.public-subscription-hero__subtitle {
    font-size: 16px;
    margin: 0;
    color: inherit;
}

@media (max-width: 640px) {
    .public-subscription-hero__title {
        font-size: 24px;
    }
}

/* Start Loved by teams section */
.loved-by-teams-section {
    margin: 60px 0;
}

.loved-by-teams-section h6 {
    color: #262627;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    text-align: center;
}

.loved-by-teams-section .loved-by-teams-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.loved-by-teams-section .loved-by-teams-logos img {
    height: auto;
    width: 100px;
    object-fit: contain;
    filter: grayscale(100%);
}


/* End Loved by teams section */

/* Start Pill toggle (Monthly / Annual) section */
.pill-section {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.pill-toggle {
    --pill-width: 220px;
    /* adjust as needed */
    width: var(--pill-width);
    background: #eeeef0;
    border-radius: 999px;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    position: relative;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

.pill-toggle .option {
    position: relative;
    z-index: 2;
    flex: 1 1 50%;
    text-align: center;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    color: #6b6b6c;
    user-select: none;
}

.pill-toggle .option.active {
    color: #0b0b0c;
    font-weight: 600;
}

.pill-toggle .slider {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 8px);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(28, 29, 33, 0.08);
    transition: left 220ms cubic-bezier(.2, .8, .2, 1);
    z-index: 1;
}

.pill-toggle[data-active="annual"] .slider {
    left: calc(50% + 4px);
}

/* End Pill toggle (Monthly / Annual) section */

/* Plans grid and cards */
.plans-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
    margin: 40px 0;
}

.plan-card {
    font-size: 16px;
    background: #fff;
    border-radius: 8px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #000000;
}

.plan-card.recommended {
    background: #DCE5EF;
}

.plan-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    height: 20px;
    margin-bottom: 14px;
}

.plan-title {
    font-size: 20px;
}

.recommended .plan-header .badge {
    display: inline-block;
    font-size: 12px;
    padding: 6px 12px;
    color: #000;
    background: #fff;
    border-radius: 50px;
    margin-left: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.plan-sub {
    font-size: 16px;
    margin: 12px 0;
}

.plan-price {
    font-size: 40px;
    font-weight: bold;
    margin: 12px 0;
}

.plan-price .period {
    font-size: 16px;
    font-weight: 400;
    margin-left: 6px;
    color: #6b6b6c;
}

.plan-cta {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    min-height: 103px;
}

.btn-subscribe {
    display: block;
    width: 100%;
    background: #474165;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.subscribe-subtext{
    display: block;
    text-align: center;
    color: #78736F;
    font-size: 16px;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0;
}

.get-quote {
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #888888;
    text-decoration: underline;
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-weight: inherit;
    text-transform: none;
}

.get-quote.recommended {
    color: #474165;
}

.plan-card .plan-features {
    font-size: 16px;
    font-weight: 400;
    margin-top: 18px;
    color: #222;
}

.plan-features li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .loved-by-teams-section .loved-by-teams-logos img {
        width: 70px;
    }
}

@media (max-width: 992px) {
    .plans-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .plans-section {
        grid-template-columns: 1fr;
    }

    .plans-section {
        gap: 14px;
    }

    .plan-card {
        padding: 20px;
    }

    .subscription-main {
        padding: 2rem;
    }

    .loved-by-teams-section .loved-by-teams-logos img {
        width: 60px;
    }
}



@media (max-width: 420px) {
    .pill-toggle {
        --pill-width: 160px;
    }

    .pill-toggle .option {
        font-size: 13px;
        padding: 6px 8px;
    }
}

/* Testimonials section */
.testimonials-section {
    border-bottom: 2px solid #C4C4C4;
    padding-bottom: 40px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.testimonial {
    background: transparent;
    padding: 10px 18px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 64px;
}

/* FAQ / Accordion styles */
.faq-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
    margin: 60px 0 80px;
}

.faq-left {
    padding-right: 28px;
}

.faq-title {
    font-size: 36px;
    margin: 6px 0 12px;
}

.faq-desc {
    color: #7a7a7a;
    margin-bottom: 18px;
    line-height: 1.6;
}

.btn-contact-sales {
    display: block;
    width: 60%;
    background: #474165;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.faq-right {
    padding-left: 28px;
}

.faq-list {
    display: block;
}

.faq-item {
    border-bottom: 2px solid #C4C4C4;
    padding: 18px 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-q .faq-icon {
    font-size: 20px;
    color: #333;
}

.faq-a {
    margin-top: 12px;
    color: #4b4b4b;
}

@media (max-width: 992px) {
    .faq-section {
        grid-template-columns: 1fr;
    }

    .faq-left {
        border-right: none;
        padding-right: 0;
        margin-bottom: 18px;
    }

    .faq-right {
        padding-left: 0;
    }
}

.testimonial .quote {
    font-size: 16px;
    color: #6b6b6c;
    line-height: 1.6;
    margin: 0 0 12px;
}

.testimonial .meta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial .meta {
    margin-top: 6px;
}

.testimonial .meta .name {
    font-weight: 700;
    color: #1b1b1b;
}

.testimonial .meta .name {
    font-weight: 700;
    color: #1b1b1b;
}

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

@media (max-width: 640px) {
    .testimonials {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial .quote {
        font-size: 15px;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
}

.export-spinner {
    width: 2rem;
    height: 2rem;
    color: #474165;
}

.modal[aria-hidden="false"] {
    display: block;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

body.modal-open {
    overflow: hidden !important;
    touch-action: none;
    -webkit-overflow-scrolling: auto;
}

.modal-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    height: 75svh;
    overflow: auto;
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 14px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
}

.modal-body.subscriptions-body {
    display: flex;
    gap: 24px;
}

.modal-left {
    flex: 1 1 55%;
}

.modal-right {
    flex: 1 1 45%;
}

.modal-left label {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.modal-right label {
    display: flex;
    font-size: 14px;
    font-weight: 500;
}

.modal-billing-radio {
    margin-right: 1rem;
}

.modal-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
}

.number-of-seats-title {
    height: 25px;
    margin: 0;
}

.seats-input-wrapper {
    position: absolute;
    right: 8px;
    top: 3px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.seats-input-wrapper .seat-btn,
.seats-control .seat-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #474165;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 140ms ease, transform 80ms ease, box-shadow 140ms ease;
}

.seats-input-wrapper .seat-btn:hover,
.seats-control .seat-btn:hover {
    background: #f6f7fb;
    transform: translateY(-1px);
}

.seats-input-wrapper .seat-btn:active,
.seats-control .seat-btn:active {
    transform: translateY(0);
}

.seats-input-wrapper .seat-btn:focus,
.seats-control .seat-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(71, 65, 101, 0.08);
}

.seats-input-wrapper .seat-btn:disabled,
.seats-control .seat-btn:disabled,
.seats-input-wrapper .seat-btn.disabled,
.seats-control .seat-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.seats-input-wrapper+.seats-control .modal-input,
.seats-control .seats-input-wrapper .modal-input {
    width: 100%;
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
}

/* Help block / inline error for seats input */
.seats-control .help-block {
    font-size: 12px;
    color: #dc3545;
    margin-top: 6px;
}


.billing-options {
    margin-bottom: 14px;
}

.billing-option {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}

.billing-option label {
    cursor: pointer;
}

.billing-copy {
    display: flex;
    flex-direction: column;
}

.billing-title {
    font-weight: 500;
}

.billing-price {
    font-weight: 500;
    margin-top: 6px;
}

.modal-price-monthly {
    font-weight: bold;
}

.modal-price-annual {
    font-weight: bold;
}

.modal-period {
    color: #828282;
    font-weight: 300;
}

.billing-save {
    background: rgba(175, 214, 125, 0.25);
    color: #00832D;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    margin-left: 0.5rem;
}

/* Highlight selected billing option */
.billing-option.selected {
    border-color: #474165;
    box-shadow: 0 8px 24px rgba(75, 62, 107, 0.12);
    background: #fff;
}

.modal-right .coupon-label {
    display: block;
}

.modal-summary {
    border: 1px solid #e6e6e6;
    padding: 24px;
    border-radius: 8px;
    margin-top: 12px;
}

.summary-amount {
    font-weight: 600;
}

.summary-period {
    font-weight: 500;
    font-size: 12px;
    color: #5E5E5E;
}

.summary-price {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.summary-terms {
    display: block;
    margin-bottom: 12px;
}

.purchase-summary button {
    border: 0;
    background: none;
    text-decoration: underline;
}

.btn-subscribe-modal {
    display: inline-block;
    width: 100%;
    background: #474165;
    color: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    border: none;
    font-weight: 700;
}

.btn-download-quote-modal {
    width: 100%;
    background: #fff !important;
    color: #262627 !important;
    padding: 12px 16px !important;
    border-radius: 30px !important;
    border: 1px solid #262627 !important;
    font-weight: 700 !important;
    font-size: inherit !important;
}

.btn-download-quote-modal:hover {
    background: #00000020 !important;
}

.terms-text {
    margin-left: 0.25rem;
    font-size: 12px;
    color: #5E5E5E;
}

@media (max-width: 760px) {
    .modal-body {
        flex-direction: column;
    }

}

@media (max-width: 640px) {
    .modal-panel {
        position: fixed !important;
        left: 50% !important;
        top: 6% !important;
        transform: translate(-50%, 0) !important;
        width: calc(100% - 32px) !important;
        max-width: 720px !important;
        max-height: calc(100vh - 48px) !important;
        overflow-y: auto !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
    }

    .modal-body {
        gap: 12px !important;
    }

    .modal-left,
    .modal-right {
        flex: 1 1 100% !important;
        width: 100% !important;
    }

    /* Make inputs and selectize more touch-friendly */
    .modal-input {
        font-size: 15px !important;
        padding: 12px !important;
    }

    /* Limit selectize dropdown height on mobile so modal can still scroll */
    .selectize-control.modal-input .selectize-dropdown {
        max-height: 40vh !important;
        top: calc(100% + 8px) !important;
    }
}

@media (max-width: 420px) {
    .modal-panel {
        width: calc(100% - 16px) !important;
        top: 4% !important;
        max-height: calc(100vh - 24px) !important;
    }

    .modal-input {
        font-size: 14px !important;
        padding: 10px !important;
    }

    .selectize-control.modal-input .selectize-dropdown {
        max-height: 50vh !important;
    }
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
.modal-input:focus-visible {
    outline: none;
}

#reason_other {
    min-height: 70px;
}

/* Selectize overrides - align selectize controls with modal-input design */
.selectize-control.modal-input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    /* handled by inner input */
    border: 1px solid #e6e6e6 !important;
    border-radius: 6px !important;
    background: #fff !important;
    position: relative !important;
}

.selectize-control.modal-input .selectize-input {
    padding: 10px 12px !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: text !important;
    color: #1b1b1b !important;
}

/* Multi-select / chips styling */
.selectize-control.modal-input.multi .selectize-input {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    padding: 8px !important;
    min-height: 40px !important;
    border-bottom: none !important;
    width: 100%;
    padding: 10px 12px !important;
    border-radius: 6px;
}

.selectize-control.modal-input .selectize-input .item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f0f0f0 !important;
    color: #1b1b1b !important;
    padding: 6px 10px 6px 10px !important;
    border-radius: 8px !important;
    margin: 4px 6px 4px 0 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    max-width: calc(100% - 40px) !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    position: relative !important;
    /* allow absolute remove button inside */
    /* reserve space for remove button */
}

.selectize-control.modal-input .selectize-input .item.active {
    background: #f0f0f0 !important;
}

.selectize-control.modal-input .selectize-input .item .remove {
    position: relative !important;
    margin: 0 !important;
    color: #6b6b6c !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    padding: 0 4px !important;
    background: transparent !important;
    line-height: 1 !important;
    border-left: none !important;
    padding: 0 !important;

}

/* Ensure the input grows to fill remaining space and wraps to next line when needed */
.selectize-control.modal-input .selectize-input input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    color: #1b1b1b !important;
    flex: 1 1 180px !important;
    min-width: 60px !important;
}


.selectize-control.modal-input.single .selectize-input.items.has-options.has-items .item {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #1b1b1b !important;
    font-size: 14px !important;
}

.selectize-control.modal-input .selectize-input input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    color: #1b1b1b !important;
    width: auto !important;
}

.selectize-control.modal-input.single .selectize-input.items {
    height: 40px !important;
    border-bottom: none !important;
    width: 100%;
    padding: 10px 12px !important;
    border-radius: 6px;
}

.selectize-control.modal-input .selectize-dropdown {
    border: 1px solid #e6e6e6 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
    border-radius: 8px !important;
    background: #fff !important;
    z-index: 3000 !important;
    max-height: 320px !important;
    overflow: auto !important;
    padding: 6px 0 !important;
    /* position the dropdown to sit below the control and match its width */
    position: absolute !important;
    left: 0 !important;
    top: calc(100% + 6px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.selectize-control.modal-input .selectize-dropdown .selectize-dropdown-content {
    outline: none !important;
}

.selectize-control.modal-input .selectize-dropdown .option {
    padding: 10px 14px !important;
    font-size: 14px !important;
    color: #333 !important;
    cursor: pointer !important;
}

.selectize-control.modal-input .selectize-dropdown .option:hover,
.selectize-control.modal-input .selectize-dropdown .option.active,
.selectize-control.modal-input .selectize-dropdown .option.selected {
    background: #F5F7FF !important;
    color: #000 !important;
}

.selectize-control.modal-input .selectize-input.has-options::after,
.selectize-control.modal-input .selectize-input.not-full::after {
    display: block !important;
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: gray transparent transparent transparent;
}

.selectize-control.modal-input .selectize-input.focus:after {
    margin-top: -4px;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent gray transparent;
}

.selectize-control.modal-input .placeholder {
    color: #9aa0a6 !important;
}

/* Show details accordion for plan cards */
.plan-card .show-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #474165;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
}

.plan-card .show-details .show-icon {
    font-size: 12px;
    transition: transform 180ms ease;
}

.plan-card .show-details[aria-expanded="true"] .show-icon {
    transform: rotate(180deg);
}

.plan-card .plan-details {
    display: none;
    margin-top: 12px;
    color: #4b4b4b;
    line-height: 1.6;
    font-size: 14px;
}

.plan-card .plan-details.open {
    display: block;
}


/* Summary */
.purchase-summary-table {
    width: 100%;
}

.summary-card {
    border: 1px solid #e6e6e6;
    padding: 24px;
    border-radius: 8px;
}

.coupon-title {
    padding-bottom: 1rem;
    position: relative;
}

.coupon-title .percent-off {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: #5E5E5E;
}

.discount-price {
    display: flex;
    justify-content: end;
}


.calculate-btn,
.apply-coupon-btn {
    position: absolute;
    top: 25%;
    right: 3%;
    z-index: 1;
    border: 0.5px solid #c4c4c4;
    border-radius: 13px;
    font: normal normal 500 12px/12px Poppins;
    letter-spacing: 0px;
    color: #c4c4c4;
    background: transparent;
    padding: 4px 12px;
    width: 85px;
}

.calculate-btn:hover,
.apply-coupon-btn:hover {
    border: 0.5px solid #5A5579;
    color: #5A5579;
}

.coupon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.coupon-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: none;
}

.coupon-tag img {
    width: 15px;
}

.coupon-pill .coupon-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #474165;
}

.coupon-pill .coupon-icon {
    display: inline-block;
    opacity: 0.8;
}

.coupon-pill .coupon-code {
    font-size: 13px;
    letter-spacing: 0.4px;
}

.coupon-pill .coupon-remove {
    background: transparent;
    border: none;
    font-size: 16px;
    line-height: 1;
    color: #6b6b6c;
    cursor: pointer;
}

.coupon-desc {
    font-size: 12px;
    color: #9aa0a6;
}

.active-subscription {
    opacity: 0.7;
    cursor: auto;
}

/* Billing Info Display Styles */
.billing-info-display {
    display: none;
}

.saved-billing-card {
    margin-bottom: 1rem;
}

.saved-billing-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 12px;
}

.saved-billing-details {
    margin-top: 8px;
    font-size: 13px;
    color: #2a2a2a;
}

.billing-info-row {
    margin-bottom: 4px;
    display: flex;
    flex-wrap: wrap;
}

.billing-label {
    font-weight: 600;
    margin-right: 6px;
    color: #333;
}

.saved-billing-actions {
    margin-top: 16px;
}

.btn-edit-billing-info {
    display: inline-block;
    width: 100%;
    background: transparent;
    color: #474165;
    border: 1px solid #474165;
    padding: 12px 18px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-edit-billing-info:hover {
    background: #474165;
    border-color: #ddd;
    color: #fff;
}

/* Terms validation error styles */
.terms-error {
    font-size: 12px;
    font-weight: 500;
}

.summary-terms.has-error {
    border: 1px solid #dc3545;
    border-radius: 4px;
    padding: 8px;
    background-color: rgba(220, 53, 69, 0.05);
}

.summary-terms.has-error .terms-text {
    color: #dc3545;
}

.btn-subscribe-modal:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #6c757d;
}

.btn-subscribe-modal.error-state {
    border: 2px solid #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Field validation error styles */
.field-error {
    font-size: 12px;
    font-weight: 500;
}

.modal-input.has-error {
    border: 1px solid #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05);
    box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.15);
}

.modal-input.has-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* Selectize error states */
.selectize-control.modal-input.has-error .selectize-input {
    border: 1px solid #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05) !important;
    box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.15) !important;
}

.selectize-control.modal-input.has-error .selectize-input:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-group.has-error .selectize-control.modal-input .selectize-input {
    border: 1px solid #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05) !important;
    box-shadow: 0 0 0 0.1rem rgba(220, 53, 69, 0.15) !important;
}

.processing-payment-text {
    font-weight: 600;
}

.apply-coupon-btn.has-value {
    border: 0.5px solid #5A5579;
    color: #5A5579;
}

#exportProgressModal {
    z-index: 9999;
}

#subscribeModal {
    z-index: 1000;
}
