.acord-24 {
    width: 70%;
    margin: 0 auto;
    min-width: 0;
}

.acord-24 label {
    cursor: default;
}

@media (max-width: 768px) {
    .acord-24 {
        width: 95%;
    }
}

/* ── Login Modal ── */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.login-modal-overlay.active {
    display: flex;
}

.login-modal {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.login-modal p {
    font-size: 1rem;
}

.login-modal .loginOptionsButton .btn {
    white-space: nowrap;
    padding: 8px 16px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #333;
}

/* ── Step Progress Indicator ── */
.step-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 860px;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 0 0 36px;
    height: 66px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item.active .step-circle {
    background-color: #eab308;
    color: #fff;
}

.step-item.completed .step-circle {
    background-color: #1a3e6e;
    color: #fff;
}

.step-item.completed .step-circle::before {
    content: '✓';
    font-size: 0.95rem;
    font-weight: 700;
    margin-right: 1px;
}

.step-label {
    position: absolute;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #999;
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.step-item.active .step-label {
    color: #eab308;
    font-weight: 600;
}

.step-item.completed .step-label {
    color: #1a3e6e;
}

.step-connector {
    flex: 1;
    height: 3px;
    background-color: #e0e0e0;
    margin-top: 17px;
    transition: background-color 0.3s ease;
}

.step-connector.completed {
    background-color: #1a3e6e;
}

@media (max-width: 760px) {
    .acord-generator.acord-generator-24 .step-progress {
        justify-content: flex-start !important;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 6px 48px 18px !important;
        margin-bottom: 18px;
        -webkit-overflow-scrolling: touch;
    }

    .acord-generator.acord-generator-24 .step-progress::before,
    .acord-generator.acord-generator-24 .step-progress::after {
        content: none;
    }

    .acord-generator.acord-generator-24 .step-item {
        flex: 0 0 42px;
        min-width: 42px;
        height: 88px;
    }

    .acord-generator.acord-generator-24 .step-circle {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .acord-generator.acord-generator-24 .step-label {
        top: 46px;
        width: 92px;
        font-size: 10px;
        line-height: 1.2;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .acord-generator.acord-generator-24 .step-connector {
        flex: 0 0 78px;
        min-width: 78px;
        max-width: none;
        margin-top: 17px;
    }
}

@media (max-width: 380px) {
    .acord-generator.acord-generator-24 .step-progress {
        padding-inline: 42px !important;
    }

    .acord-generator.acord-generator-24 .step-label {
        width: 86px;
        font-size: 9.5px;
    }

    .acord-generator.acord-generator-24 .step-connector {
        flex-basis: 72px;
        min-width: 72px;
    }
}

/* ── Searchable Dropdown (Insurance Carrier / State / City) ── */
.carrier-dropdown-wrapper {
    position: relative;
    width: 100%;
}

.carrier-dropdown-wrapper input {
    width: 100%;
}

.carrier-dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carrier-dropdown-list.open {
    display: block;
}

.carrier-dropdown-item {
    padding: 6px 8px;
    font-size: 0.7rem;
    cursor: pointer;
    color: #333;
}

.carrier-dropdown-item:hover,
.carrier-dropdown-item.highlighted {
    background-color: #fff8e1;
    color: #333;
}

.carrier-dropdown-item.no-results {
    color: #888;
    cursor: default;
    font-style: italic;
}

.carrier-dropdown-item.no-results:hover {
    background-color: #fff;
}
