/* NectoMax Setup Wizard Styles */

.nectomax-wizard-wrap {
    max-width: 800px;
}

.nectomax-wizard-steps {
    display: flex;
    justify-content: space-between;
    margin: 20px 0 30px;
    padding: 0;
    list-style: none;
}

.nectomax-step {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
}

.nectomax-step.active {
    opacity: 1;
}

.nectomax-step.completed {
    opacity: 0.7;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2271b1;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.nectomax-step:not(.active) .step-number {
    background: #dcdcde;
    color: #50575e;
}

.nectomax-step.completed .step-number {
    background: #00a32a;
}

.nectomax-wizard-panel {
    display: none;
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px 24px;
    margin-bottom: 20px;
}

.nectomax-wizard-panel.active {
    display: block;
}

.nectomax-wizard-actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f1;
    display: flex;
    justify-content: space-between;
}

/* City enrichment rows */
.nectomax-city-row {
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #fff;
}

.nectomax-city-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
}

.nectomax-city-header .city-name {
    flex: 1;
}

.nectomax-lookup-btn {
    white-space: nowrap;
}

.nectomax-lookup-summary {
    font-size: 12px;
    color: #00a32a;
    white-space: nowrap;
}

.nectomax-status-dot.enriched {
    background: #00a32a;
}

.nectomax-city-toggle {
    cursor: pointer;
    border: none;
    background: none;
    font-size: 16px;
    color: #50575e;
    padding: 4px;
    transition: transform 0.2s;
}

.nectomax-city-toggle.expanded {
    transform: rotate(90deg);
}

.nectomax-city-detail {
    display: none;
    padding: 12px 16px 16px;
    border-top: 1px solid #f0f0f1;
    background: #fafafa;
}

.nectomax-city-detail.expanded {
    display: block;
}

.nectomax-field-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.nectomax-field-row .nectomax-field {
    flex: 1;
}

.nectomax-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #50575e;
    margin-bottom: 2px;
}

.nectomax-field input,
.nectomax-field textarea {
    width: 100%;
    box-sizing: border-box;
}

.nectomax-sublist-header {
    font-size: 12px;
    font-weight: 600;
    color: #50575e;
    margin: 12px 0 4px;
}

/* Collapsible sections */
.nectomax-collapsible {
    margin: 16px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}
.nectomax-collapsible-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 14px;
    background: #fafafa;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #1d2327;
}
.nectomax-collapsible-toggle .dashicons {
    transition: transform 0.2s;
}
.nectomax-collapsible.open .nectomax-collapsible-toggle .dashicons {
    transform: rotate(180deg);
}
.nectomax-collapsible-content {
    display: none;
    padding: 0 14px 14px;
}
.nectomax-collapsible.open .nectomax-collapsible-content {
    display: block;
}
