.nbn-lookup-wrap {
    max-width: 720px;
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #fff;
}

.nbn-lookup-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.nbn-lookup-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.nbn-lookup-row input {
    flex: 1;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 16px;
}

.nbn-lookup-row button {
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    background: #904F97;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.nbn-lookup-row button:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.nbn-lookup-status {
    margin-top: 12px;
    min-height: 22px;
    font-weight: 600;
}

.nbn-status-info {
    color: #444;
}

.nbn-status-success {
    color: #1f7a1f;
}

.nbn-status-error {
    color: #b00020;
}

.nbn-lookup-results {
    margin-top: 22px;
}

.nbn-lookup-results h3 {
    margin: 0 0 14px;
}

.nbn-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.nbn-result-card {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f8f8f8;
}

.nbn-result-card strong,
.nbn-result-card span {
    display: block;
}

.nbn-result-card span {
    margin-top: 8px;
    font-weight: 700;
}

.nbn-result-card.available {
    border-color: #2e7d32;
    background: #effaf0;
}

.nbn-result-card.available span {
    color: #2e7d32;
}

.nbn-result-card.unavailable {
    border-color: #b00020;
    background: #fff2f3;
}

.nbn-result-card.unavailable span {
    color: #b00020;
}

@media (max-width: 620px) {
    .nbn-lookup-row {
        flex-direction: column;
    }

    .nbn-result-grid {
        grid-template-columns: 1fr;
    }
}
