/* Auth Card Styles */
.vt-auth-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px !important;
    max-width: 600px;
    margin: 40px auto;
}

.vt-auth-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #f0f4ff;
    color: #2b5cff;
    border-radius: 50%;
    margin-bottom: 24px;
}

.vt-auth-card .vt-rs-title {
    flex: none;
    font-size: 24px;
    margin-bottom: 12px;
}

.vt-auth-card .vt-rs-description {
    flex: none;
    padding: 0;
    margin-bottom: 32px;
    max-width: 400px;
}

.vt-auth-card .vt-rs-description p {
    font-size: 15px;
    margin: 0;
}

.vt-auth-card .vt-btn-solid {
    padding: 12px 32px;
}

/* Original Container fix */
.vt-route-selector-container {
    font-family: 'Inter', sans-serif;
    margin: 0 auto;
}

.vt-route-selector-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 80px auto 80px;
}

.vt-route-selector-card.vt-auth-card {
    margin: 40px auto;
}

.vt-rs-header {
    flex: 1 1 50%;
    padding-right: 20px;
}

.vt-rs-description {
    flex: 1 1 50%;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    padding-top: 25px;
}

.vt-rs-label {
    color: #2b5cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.vt-rs-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.vt-rs-form {
    flex: 1 1 100%;
    margin-top: 20px;
}

.vt-rs-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.vt-rs-select-wrapper {
    margin-bottom: 20px;
    max-width: 300px;
}

.vt-rs-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    appearance: none;
    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%23333333%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 15px top 50%;
    background-size: 12px auto;
}

.vt-rs-select:focus {
    outline: none;
    border-color: #2b5cff;
}

.vt-rs-btn {
    background-color: #2b5cff;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.vt-rs-btn:hover {
    background-color: #1a42cc;
}

.vt-route-content {
    animation: fadeIn 0.5s;
}

.title-description {
    display: flex;
    align-items: flex-end;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vt-route-section-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    flex-direction: column;
}

.vt-rs-section-title {
    flex: 1 1 30%;
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0 0 0;
    color: #111;
    line-height: 1.2;
}

.vt-rs-section-desc {
    flex: 1 1 60%;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.vt-rs-viewing-mode {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {

    .vt-rs-header,
    .vt-rs-description,
    .vt-rs-section-title,
    .vt-rs-section-desc {
        flex: 1 1 100%;
        padding-right: 0;
        padding-left: 0;
    }

    .vt-rs-section-desc {
        margin-top: 15px;
    }
}

/* Simulator Styles */
.vt-simulator-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.vt-simulator-panel {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    box-sizing: border-box;
}

.vt-simulator-left {
    background: #fafbfc;
}

.vt-sim-badge {
    display: inline-block;
    background: #f0f4ff;
    color: #2b5cff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid #d0deff;
    width: fit-content;
}

.vt-sim-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #111;
}

.vt-sim-text-block {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vt-sim-text-block p {
    margin: 0 0 10px 0;
}

.vt-sim-tiers {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.vt-sim-tiers li {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #333;
}

.vt-sim-tiers li:last-child {
    border-bottom: none;
}

.vt-sim-note {
    font-size: 12px;
    color: #888;
}

.vt-sim-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.vt-sim-form-group {
    flex: 1 1 calc(50% - 15px);
    min-width: 150px;
}

.vt-sim-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.vt-rs-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
}

.vt-rs-input:focus {
    outline: none;
    border-color: #2b5cff;
}

.vt-sim-interpretation {
    margin-top: 25px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

.vt-sim-interpretation h5 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
}

/* Right panel styles */
.vt-sim-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.vt-sim-result-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 15px;
}

.vt-sim-res-label {
    display: block;
    font-size: 11px;
    color: #888;
    margin-bottom: 5px;
}

.vt-sim-res-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.vt-sim-notice {
    background: #fffdf0;
    border: 1px solid #f7e6a1;
    border-radius: 8px;
    padding: 15px;
    font-size: 13px;
    color: #8c6a00;
    line-height: 1.6;
}

/* Info section and cards */
.vt-reseller-info-section {
    margin-top: 40px;
}

.vt-info-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.vt-info-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.vt-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
}

.vt-info-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #111;
}

.vt-info-list {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.vt-info-list li {
    margin-bottom: 12px;
}

.vt-info-list li:last-child {
    margin-bottom: 0;
}

.vt-info-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vt-info-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2b5cff !important;
    text-decoration: none;
}

.vt-info-link:hover {
    text-decoration: underline;
}

/* Modal Popup Styles */
.vt-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.vt-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.vt-modal {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.vt-modal-overlay.active .vt-modal {
    transform: translateY(0);
}

.vt-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

.vt-modal-close:hover {
    color: #111;
}

/* Modal Internal Formatting */
.vt-modal-content .eyebrow {
    display: inline-block;
    color: #2b5cff;
    background: #f0f4ff;
    border: 1px solid #d0deff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.vt-modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-top: 0;
}

.vt-modal-content .lead {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vt-modal-content .modal-section {
    margin-top: 35px;
}

.vt-modal-content .kicker {
    color: #2b5cff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.vt-modal-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.vt-modal-content .modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.vt-modal-content .modal-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.vt-modal-content .card {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 25px;
    background: #fff;
}

.vt-modal-content .tag {
    display: inline-block;
    color: #2b5cff;
    background: #f0f4ff;
    border: 1px solid #d0deff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.vt-modal-content .route-box {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    padding: 20px;
    background: #fafbfc;
}

.vt-modal-content .route-box strong {
    display: block;
    color: #111;
    font-size: 15px;
}

.vt-modal-content .small {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.vt-modal-content .modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 13px;
}

.vt-modal-content .modal-table th {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 2px solid #eee;
    color: #111;
    font-weight: 600;
}

.vt-modal-content .modal-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.vt-modal-content .notice.green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 20px;
}

.vt-modal-content .notice.green strong {
    color: #166534;
    display: block;
    font-size: 15px;
}

.vt-modal-content .notice.green .small {
    color: #15803d;
}

/* Base notice style (yellowish) */
.vt-modal-content .notice {
    background: #fffcf0;
    border: 1px solid #f7e6a1;
    border-radius: 8px;
    padding: 20px;
}

.vt-modal-content .notice strong {
    color: #8c6a00;
    display: block;
    font-size: 15px;
}

.vt-modal-content .notice .small {
    color: #735700;
}

.vt-modal-content .list {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.vt-modal-content .list li {
    margin-bottom: 8px;
}

.vt-modal-content .list li:last-child {
    margin-bottom: 0;
}

/* Next Step & Payment Section */
.vt-next-step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.vt-checkpoint-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.vt-payment-box,
.vt-route-content {
    background: #fafbfc;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto 80px;
    max-width: 1140px;
}

.vt-policy-links {
    margin: 25px 0 15px 0;
    font-size: 14px;
    font-weight: 600;
}

.vt-policy-links a {
    color: #2b5cff;
    text-decoration: none;
    margin-right: 20px;
}

.vt-policy-links a:hover {
    text-decoration: underline;
}

.vt-checkbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.vt-checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.vt-btn-payment {
    background-color: #2b5cff;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: auto;
    text-align: center;
    display: block;
    text-decoration: none;
}

.vt-btn-payment:hover {
    background-color: #1a42cc;
    color: #fff !important;
}

.vt-btn-payment.disabled {
    background-color: #2b5cff47;
    cursor: not-allowed;
    pointer-events: none;
    color: #fff;
}

.vt-btn-outline {
    background-color: transparent;
    color: #111 !important;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.vt-btn-outline:hover {
    border-color: #2b5cff;
    color: #2b5cff;
}

.vt-btn-solid {
    background-color: #2b5cff;
    color: #fff !important;
    border: none;
    border-radius: 30px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
}

.vt-btn-solid:hover {
    background-color: #1a42cc;
    color: #fff;
}

/* Wide Recommended Section */
.vt-wide-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #eee;
    margin-top: 40px;
}

.vt-wide-card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 30px;
}

.vt-wide-card-header .vt-rs-label {
    width: 100%;
}

.vt-wide-card-title {
    flex: 1 1 40%;
    font-size: 34px;
    font-weight: 700;
    color: #001b44;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.vt-wide-card-desc {
    flex: 1 1 50%;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}

.vt-wide-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.vt-sub-card {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    background: #fff;
}

.vt-sub-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #001b44;
    margin: 0 0 10px 0;
}

.vt-sub-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 900px) {

    .vt-info-grid-3,
    .vt-wide-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vt-wide-card-title {
        flex: 1 1 100%;
        margin-bottom: 15px;
    }

    .vt-wide-card-desc {
        flex: 1 1 100%;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .vt-modal-content .modal-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .vt-sim-results-grid {
        grid-template-columns: 1fr;
    }

    .vt-info-grid-2,
    .vt-info-grid-3,
    .vt-next-step-grid,
    .vt-wide-card-grid {
        grid-template-columns: 1fr;
    }

    .vt-modal-content .modal-grid,
    .vt-modal-content .modal-grid-3 {
        grid-template-columns: 1fr;
    }
}