.connectapre-wizard-wrap {
    max-width: 700px;
    margin: 60px auto;
    background: #fff;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.connectapre-wizard-header {
    text-align: center;
    margin-bottom: 50px;
}

.connectapre-wizard-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #23282d;
    margin-bottom: 10px;
}

.connectapre-wizard-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.connectapre-wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.connectapre-wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 0;
    transform: translateY(-50%);
}

.connectapre-wizard-steps .step {
    font-weight: 600;
    color: #bbb;
    background: #fff;
    padding: 0 15px;
    z-index: 1;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.connectapre-wizard-steps .step.active {
    color: #2271b1;
}

.wizard-step-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

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

.wizard-step-content.active {
    display: block;
}

.wizard-nav {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.connectapre-wizard-wrap h2 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.form-table th {
    width: 150px;
    font-weight: 600;
}

.form-table td input[type="text"],
.form-table td select {
    width: 100%;
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
}

.form-table td input[type="text"]:focus,
.form-table td select:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.button-primary {
    background: #2271b1 !important;
    border-color: #2271b1 !important;
    text-shadow: none !important;
    box-shadow: none !important;
    padding: 6px 20px !important;
    font-size: 14px !important;
    height: auto !important;
    border-radius: 4px !important;
}

.button-primary:hover {
    background: #135e96 !important;
}

.button-secondary {
    color: #2271b1 !important;
    border-color: #2271b1 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Location Picker Modal Styles */
.connectapre_location_parent {
    position: relative;
}

.connectapre_single_select_modal {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
    margin-top: 5px;
    padding: 10px;
    box-sizing: border-box;
}

.connectapre_single_select_modal input {
    width: 100%;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.connectapre_list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.connectapre_list li {
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 2px;
}

.connectapre_list li:hover {
    background: #f0f6fc;
    color: #2271b1;
}

