/**
 * Pro6PP Postcode Autocomplete Styles
 * Schulten Media
 */

.smpostcode-fields-wrapper {
    margin-bottom: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.25rem;
}

.smpostcode-fields-wrapper .form-group {
    margin-bottom: 1rem;
}


.smpostcode-message {
    margin-bottom: 1rem;
}

.smpostcode-manual-link,
.smpostcode-auto-link {
    color: #8aa597;
    text-decoration: none;
}

.smpostcode-manual-link:hover,
.smpostcode-auto-link:hover {
    color: #7a9587;
    text-decoration: underline;
}

.smpostcode-manual-wrapper {
    margin-bottom: 1rem;
}

.smpostcode-manual-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.smpostcode-manual-checkbox input[type="checkbox"] {
    cursor: pointer;
}

.smpostcode-manual-checkbox label {
    cursor: pointer;
    margin: 0;
    user-select: none;
}

/* Field reordering styles */
@media (min-width: 768px) {
    .smpostcode-inline-field {
        display: inline-block;
        width: 49%;
        vertical-align: top;
    }

    .smpostcode-inline-left {
        margin-right: 1%;
    }

    .smpostcode-inline-right {
        margin-left: 1%;
    }
}

@media (max-width: 767px) {
    .smpostcode-inline-field {
        display: block;
        width: 100%;
    }
}
