.billing-page-content {
    padding-top: 20px;
    font-family: "Inter", sans-serif;
    padding-bottom: 40px;
}

.billing-page-content .billing-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

.billing-page-content .billing-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: #fff;
    padding: 3.2rem;
    border-radius: 10px;
}

.billing-page-content .billing-section {
    border-radius: 8px;
}

.billing-page-content .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.billing-page-content .subscription-card {
    background: #fff;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    align-items: start;
    border: none;
    box-shadow: 2px 2px 30px 0px rgba(0, 0, 0, 0.0392156863);
}

.billing-page-content .subscription-card .sub-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    position: relative;
}

.billing-page-content .subscription-card .sub-col:not(:last-child):after {
    content: "";
    position: absolute;
    right: -1px;
    top: 12px;
    width: 1px;
    height: 38px;
    background: #d2d5da;
}

@media (max-width: 480px) {
    .billing-page-content .subscription-card .sub-col:not(:last-child):after {
        height: 0px;
        width: 0;
    }
}

.billing-page-content .subscription-card .sub-col .sub-value {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    padding-bottom: 10px;
}

@media (max-width: 480px) {
    .billing-page-content .subscription-card .sub-col .sub-value {
        font-size: 18px;
    }
}

.billing-page-content .subscription-card .sub-col .sub-label {
    font-size: 14px;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.billing-page-content .subscription-card .sub-col .sub-due {
    font-size: 13px;
    color: #1f2937;
    font-weight: 500;
    margin-top: 4px;
}

.billing-page-content .status-badge {
    display: inline-flex;
    padding: 0px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.5;
    width: 69px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.billing-page-content .status-badge--active {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.billing-page-content .status-badge--awaiting {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.billing-page-content .status-badge--paid {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.billing-page-content .status-badge--partial {
    background: #fef3c7;
    color: #92400e;
}

.billing-page-content .status-badge--failed {
    background: #fee2e2;
    color: #b91c1c;
}

.billing-page-content .billing-sidebar {
    display: flex;
    flex-direction: column;
    gap: 48px;
    background: #fff;
    border: 1px solid #f4f4f5;
    border-radius: 8px;
    height: 100%;
    padding: 24px 16px;
}

.billing-page-content .sidebar-section {
    border-bottom: 1px solid #f4f4f5;
    padding-bottom: 24px;
}

.billing-page-content .sidebar-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.billing-page-content .sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.billing-page-content .sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.billing-page-content .btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: none;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.2s ease;
    font-family: inherit;
    margin: 0;
}

.billing-page-content .btn--primary {
    background: #ffb600;
    color: #1f2937;
}

.billing-page-content .btn--primary:hover {
    opacity: 0.9;
}

.billing-page-content .btn--secondary {
    background: #f3f4f6;
    color: #1f2937;
}

.billing-page-content .btn--secondary:hover {
    background: #e5e7eb;
}

.billing-page-content .quick-actions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.billing-page-content .quick-action-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #1f2937;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    font-weight: 400;
}

.billing-page-content .quick-action-btn:hover {
    color: #4b5563;
}

@media (max-width: 1024px) {
    .billing-page-content .billing-sidebar {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
    }

    .billing-page-content .sidebar-section {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .billing-page-content .billing-sidebar {
        flex-direction: column;
    }

    .billing-page-content .subscription-card {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .billing-page-content .billing-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .billing-page-content .billing-section-table {
        padding: 0;
    }

    .billing-page-content .billing-layout {
        display: block;
    }

    .billing-page-content .billing-main {
        padding: 20px;
    }
}

.billing-page-content .billing-section-table {
    border-radius: 10px;
    background: #fff;
    padding: 32px 24px;
}

.billing-page-content .page-header {
    margin-bottom: 32px;
    border-bottom: 1px solid #d2d5da;
    padding-bottom: 24px;
}

.billing-page-content .page-header .page-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.5;
}

.billing-page-content .page-header .page-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #1f2937;
}

.billing-page-content .status-badge--due {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.billing-page-content .status-badge--overdue {
    background: #fef08a;
    color: #854d0e;
    border: 1px solid #fde047;
}

.billing-page-content .renewal-footer {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.billing-page-content .renewal-total h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.billing-page-content .renewal-total p {
    font-size: 14px;
    color: #4b5563;
}

.billing-page-content .btn--pay-now {
    width: 500px;
    min-width: 200px;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    max-width: 90%;
}

@media (max-width: 480px) {
    .billing-page-content .btn--pay-now {
        width: 200px;
    }
}

.billing-page-content .table-footer-row {
    background: #f9fafb;
}

.billing-page-content .table-footer-row td {
    padding: 16px 24px;
    font-weight: 600;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
}

.pricing-table {
    background: #fff;
    margin-top: 20px;
}

.pricing-table__inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.pricing-table__header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pricing-table__header-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border-radius: 16px 16px 0 0;
}

.pricing-table__header-item .content {
    padding-bottom: 24px;
}

.pricing-table__header-item .content h3 {
    color: #000;
    text-align: center;
    padding-bottom: 4px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.25px;
}

.pricing-table__header-item .content p {
    font-size: 14px;
    font-weight: 300;
    color: #454745;
    line-height: 20px;
    letter-spacing: -0.25px;
    text-align: center;
}

.pricing-table__header-item .image {
    height: 117px;
    text-align: center;
    padding-bottom: 24px;
}

.pricing-table__header-item .image img {
    height: 100%;
}

.pricing-table__header-item .price {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 28px;
    padding-bottom: 24px;
}

.pricing-table__header-item .pricing-select-button {
    width: 100%;
    background: #ffb600;
    height: 44px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 15px;
    color: #000;
    letter-spacing: -0.25px;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 12px;
    transition: opacity 0.2s ease;
}

.pricing-table__header-item .pricing-select-button:hover {
    opacity: 0.9;
}

.pricing-table__header-item .pricing-select-button-sec {
    width: 100%;
    background: transparent;
    height: 44px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 14px;
    color: #454745;
    letter-spacing: -0.25px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pricing-table__header-item .pricing-select-button-sec:hover {
    color: #000;
}

.pricing-table__header .most-popular {
    position: relative;
    background: #f2f5f7;
    border: 1px solid #e5ebe5;
}

.pricing-table__header .most-popular .most-popular-badge {
    position: absolute;
    top: -10px;
    right: 10;
    background: #011530;
    color: #ffb600;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 20px;
}

.pricing-table__features {
    background: #fff;
    border: 1px solid #e5ebe5;
    border-radius: 16px;
}

.pricing-table__features__title {
    padding: 16px;
}

.pricing-table__features__title h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.25px;
    color: #000;
}

.pricing-table__features__row {
    height: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pricing-table__features__row:nth-child(even) {
    background: #f2f5f7;
}

.pricing-table__features__row-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.25px;
}

.pricing-table__features__row-item.title {
    justify-content: flex-start;
    padding-left: 16px;
    color: #454745;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.25px;
    line-height: 24px;
}

.pricing-table__features__row-item img {
    width: 24px;
    height: 24px;
}

.addons-section {
    margin-top: 40px;
    padding-bottom: 40px;
}

.addons-section__header {
    margin-bottom: 24px;
}

.addons-section__header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 150%;
}

.addons-section__header p {
    font-size: 18px;
    color: #1f2937;
    font-weight: 300;
}

.addons-section__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.addon-card {
    background: #fff;
    border: 1px solid #e5ebe5;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.addon-card__info h3 {
    font-size: 16px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.4;
}

.addon-card__info p {
    font-size: 14px;
    color: #6e737f;
    font-weight: 400;
    line-height: 1.5;
}

.addon-card__price {
    background: rgba(102, 179, 255, 0.3019607843);
    color: #001358;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .addons-section {
        margin-top: 30px;
        padding: 0 16px 30px;
    }

    .addon-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .addon-card__price {
        align-self: flex-end;
    }

    .pricing-table__header {
        grid-template-columns: 1fr;
    }

    .pricing-table__header-item:first-child {
        display: none;
    }

    .pricing-table__features__row {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .pricing-table__features__row-item.title {
        font-size: 14px;
    }
}

.pricing-plan-page__title {
    margin-top: 2rem;
    border-bottom: 1px solid #d2d5da;
    margin-bottom: 2.4rem;
}

.pricing-plan-page__title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 150%;
}

.pricing-plan-page__title p {
    font-size: 18px;
    color: #1f2937;
    font-weight: 300;
    padding-bottom: 1.2rem;
}

.invoices-section {
    margin-top: 20px;
    padding-bottom: 40px;
}

.invoices-section__header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d2d5da;
}

.invoices-section__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #011530;
    margin-bottom: 4px;
    line-height: 1.3;
}

.invoices-section__header p {
    font-size: 16px;
    color: #6e737f;
    font-weight: 400;
}

.invoices-section__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.invoice-card {
    background: #fff;
    border: 1px solid #e5ebe5;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    padding: 18px 12px;
    display: grid;
    grid-template-columns: 1fr 300px auto;
    align-items: center;
    gap: 24px;
}

.invoice-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.invoice-card__info .amount {
    font-size: 14px;
    font-weight: 400;
    color: #001358;
    line-height: 16px;
    padding-bottom: 4px;
}

.invoice-card__info .date {
    font-size: 14px;
    color: #6e737f;
    font-weight: 400;
    line-height: 24px;
}

.invoice-card__status {
    display: flex;
    align-items: center;
    justify-content: center;
}

.invoice-card__action {
    display: flex;
    align-items: center;
}

.invoice-card__action .btn-download {
    background: #fff;
    border: 1px solid #5a5a5a;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 16px;
    font-weight: 500;
    color: #011530;
    cursor: pointer;
    transition: all 0.2s ease;
}

.invoice-card__action .btn-download:hover {
    background: #f9fafb;
    border-color: #1f2937;
}

@media (max-width: 768px) {
    .invoice-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .invoice-card__status {
        justify-content: flex-start;
    }

    .invoice-card__action .btn-download {
        width: 100%;
        text-align: center;
    }
}

.addons-modal {
    width: 680px;
    max-width: 95%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    padding: 40px;
}

.addons-modal::backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.addons-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
}

.addons-modal__header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: absolute;
    top: -16px;
    right: -16px;
}

.addons-modal__title-wrapper {
    text-align: center;
    flex: 1;
}

.addons-modal__title-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #011530;
    margin-bottom: 8px;
    line-height: 56px;
}

.addons-modal__title-wrapper p {
    font-size: 14px;
    color: #1f2937;
    font-weight: 400;
}

.addons-modal__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.addons-modal__card {
    background: #fff;
    border: 1px solid #e5ebe5;
    border-radius: 8px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.addons-modal__card-left {
    flex: 1;
}

.addons-modal__card-left h3 {
    font-size: 16px;
    font-weight: 500;
    color: #011530;
    margin-bottom: 4px;
    line-height: 1.4;
}

.addons-modal__card-left p {
    font-size: 14px;
    color: #6e737f;
    font-weight: 400;
    line-height: 1.5;
}

.addons-modal__card-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.addons-modal__price {
    background: rgba(102, 179, 255, 0.3019607843);
    color: #001358;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.addons-modal__input {
    width: 120px;
    height: 48px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 16px;
    text-align: center;
    color: #011530;
    background: #fff;
}

.addons-modal__input:focus {
    outline: none;
    border-color: #ffb600;
}

.addons-modal__input::-moz-placeholder {
    color: #9ca3af;
}

.addons-modal__input::placeholder {
    color: #9ca3af;
}

.addons-modal__footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
}

.addons-modal__btn {
    width: 200px;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.addons-modal__btn--secondary {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #011530;
}

.addons-modal__btn--secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.addons-modal__btn--primary {
    background: #ffb600;
    border: none;
    color: #011530;
}

.addons-modal__btn--primary:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .addons-modal {
        padding: 24px;
        margin: 16px;
        width: calc(100% - 32px);
    }

    .addons-modal__card {
        flex-direction: column;
        gap: 16px;
    }

    .addons-modal__card-right {
        align-items: stretch;
        width: 100%;
    }

    .addons-modal__input {
        width: 100%;
    }

    .addons-modal__footer {
        flex-direction: column;
        gap: 12px;
    }

    .addons-modal__btn {
        width: 100%;
    }
}

.subscription-alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fffbeb;
    border-radius: 8px;
    padding: 12px 24px;
    margin: 0 3.563rem;
    margin-top: 16px;
    gap: 24px;
    border-left: 4px solid #ffcc00;
}

.subscription-alert__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.subscription-alert__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.subscription-alert__text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.4;
}

.subscription-alert__text p {
    font-size: 14px;
    font-weight: 300;
    color: #111827;
    margin: 0;
    margin-top: 2px;
    line-height: 1.4;
}

.subscription-alert__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.subscription-alert__remind {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #011530;
    cursor: pointer;
    padding: 8px 12px;
    font-family: inherit;
    transition: color 0.2s ease;
}

.subscription-alert__remind:hover {
    color: #1f2937;
}

.subscription-alert__renew {
    background: #ffb600;
    border: none;
    border-radius: 6px;
    padding: 12px 31px;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.subscription-alert__renew:hover {
    background: #ffb600;
}

@media (max-width: 768px) {
    .subscription-alert {
        flex-direction: column;
        align-items: flex-start;
        margin: 16px 1rem 0;
        padding: 16px;
        gap: 16px;
    }

    .subscription-alert__actions {
        width: 100%;
        justify-content: space-between;
    }
}

.subscription-alert--info {
    background: #eff6ff;
    border-left-color: #0070ff;
}

.subscription-alert--danger {
    background: #fff1eb;
    border-left-color: #ff4d00;
}

.renewal-modal {
    width: 873px;
    max-width: 95%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    padding: 32px;
}

.renewal-modal::backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.renewal-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.renewal-modal__header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.renewal-modal__header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.renewal-modal__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.renewal-modal__addons {
    background: #fff;
}

.renewal-modal__section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.renewal-modal__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.renewal-modal__content.billing-page-content {
    padding: 0;
    padding-bottom: 0;
}

.renewal-modal .subscription-card {
    box-shadow: none;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0;
}

.renewal-modal .subscription-card .sub-col {
    margin-bottom: 0;
}

.renewal-modal .renewal-total h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.renewal-modal .renewal-total p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.renewal-modal .btn--pay-now {
    width: 500px;
    min-width: 200px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    background: #ffb600;
    gap: 12px;
}

@media (max-width: 768px) {
    .renewal-modal {
        padding: 20px;
        margin: 16px;
        width: calc(100% - 32px);
    }

    .renewal-modal__footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .renewal-modal .btn--pay-now {
        width: 100%;
    }
}

.upgrade-modal {
    width: 600px;
    max-width: 95%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    padding: 32px;
}

.upgrade-modal::backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.upgrade-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.upgrade-modal__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #011530;
    margin: 0;
}

.upgrade-modal__header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.upgrade-modal__content {
    margin-bottom: 32px;
}

.upgrade-modal__content .select-label {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.upgrade-modal__footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
}

.upgrade-modal__btn {
    width: 200px;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.upgrade-modal__btn--secondary {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #1f2937;
}

.upgrade-modal__btn--secondary:hover {
    background: #f9fafb;
}

.upgrade-modal__btn--primary {
    background: #ffb600;
    border: none;
    color: #1f2937;
}

.upgrade-modal__btn--primary:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .upgrade-modal {
        padding: 20px;
        margin: 16px;
        width: calc(100% - 32px);
    }

    .upgrade-modal__footer {
        flex-direction: column;
        gap: 12px;
    }

    .upgrade-modal__btn {
        width: 100%;
    }
}

.downgrade-modal {
    width: 812px;
    max-width: 95%;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ececec;
    padding: 32px;
}

.downgrade-modal::backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.downgrade-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.downgrade-modal__header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.downgrade-modal__header .header-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
    margin: 8px 0 0 0;
}

.downgrade-modal__header button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.downgrade-modal__progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.downgrade-modal__progress .progress-bar {
    display: flex;
    gap: 8px;
    flex: 1;
    margin-right: 16px;
}

.downgrade-modal__progress .progress-bar__fill {
    height: 4px;
    flex: 1;
    background: #e5e7eb;
    border-radius: 2px;
}

.downgrade-modal__progress .progress-bar__fill--active {
    background: #011530;
}

.downgrade-modal__progress .progress-text {
    font-size: 14px;
    color: #6b7280;
    white-space: nowrap;
}

.downgrade-modal__alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #ffcc00;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
}

.downgrade-modal__alert .alert-icon {
    flex-shrink: 0;
}

.downgrade-modal__alert .alert-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.downgrade-modal__alert .alert-content p {
    font-size: 14px;
    color: #111827;
    margin: 0;
}

.downgrade-modal__content {
    margin-bottom: 24px;
}

.downgrade-modal__content .select-label {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 16px 0;
}

.downgrade-modal__footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
}

.downgrade-modal__btn {
    width: 200px;
    height: 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.downgrade-modal__btn--secondary {
    background: #fff;
    border: 1px solid #d1d5db;
    color: #1f2937;
}

.downgrade-modal__btn--secondary:hover {
    background: #f9fafb;
}

.downgrade-modal__btn--primary {
    background: #ffb600;
    border: none;
    color: #1f2937;
}

.downgrade-modal__btn--primary:hover {
    opacity: 0.9;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-option {
    display: block;
    cursor: pointer;
}

.plan-option input[type=radio] {
    display: none;
}

.plan-option__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid #f4f4f5;
    border-radius: 8px;
    transition: all 0.2s ease;
}

input[type=radio]:checked+.plan-option__content {
    background: #f0f7ff;
}

.plan-option__info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.plan-option__info p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.plan-option__info p .dot {
    color: #cccccc;
    margin: 0 4px;
    width: 8px;
    height: 8px;
}

.plan-option__price {
    font-size: 14px;
    font-weight: 400;
    color: #011530;
    background: rgba(102, 179, 255, 0.3019607843);
    padding: 4px 8px;
    border-radius: 4px;
}

.deactivate-section {
    margin-bottom: 24px;
}

.deactivate-section:last-child {
    margin-bottom: 0;
}

.deactivate-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.deactivate-section__header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.deactivate-section .search-input {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.deactivate-section .search-input input {
    border: none;
    outline: none;
    font-size: 14px;
    color: #1f2937;
    width: 150px;
    font-family: inherit;
}

.deactivate-section .search-input input::-moz-placeholder {
    color: #9ca3af;
}

.deactivate-section .search-input input::placeholder {
    color: #9ca3af;
}

.deactivate-section .users-table {
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.deactivate-section .action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    padding: 4px 8px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.location-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-card:hover {
    border-color: #d1d5db;
}

.location-card__info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.location-card__info p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 768px) {
    .downgrade-modal {
        padding: 20px;
        margin: 16px;
        width: calc(100% - 32px);
    }

    .downgrade-modal__footer {
        flex-direction: column;
        gap: 12px;
    }

    .downgrade-modal__btn {
        width: 100%;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .deactivate-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .deactivate-section__header .search-input {
        width: 100%;
    }

    .deactivate-section__header .search-input input {
        width: 100%;
    }
}

.billing-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 2px;
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    border: 2px solid #000;
    background-color: #fff;
    position: relative;
}

.billing-checkbox:checked {
    background-color: #ffb600;
    border-color: #ffb600;
}

.billing-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/*# sourceMappingURL=billing.css.map */