/* phpcs:ignore */
.lpa-location-checker-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 15px;
    background: #FEFEFA;
    padding: 20px 15px; /* MODIFIED: Top/Bottom padding is 20px, Left/Right is now 15px */
    border-radius: 8px;
    width: 260px; 
    font-size: 14px;
}

#lpa_zip_code_input {
    height: 28px; /* Reduced from 30px */
    width: 80px; /* Reduced from 200px */
    font-size: 13px; /* Reduced from 15px */  
    padding: 0 8px;
}


.lpa-status-dot {
    width: 10px;
    height: 10px;
    background-color: #28a745; /* Same green as the text */
    border-radius: 50%;       /* This makes the square a circle */
    margin-right: 8px;        /* Space between the dot and the word "Available" */
    display: inline-block;
}


/* Reduced sizes for results */
.lpa-result-item {
    background-color: transparent;
    border: 1.5px solid #a9a9a9;  /* THIS IS THE IMPORTANT LINE FOR THE GRAY BOX */
    border-radius: 8px;          /* This makes the corners rounded */
    padding: 12px;               /* Your reduced padding */
    margin-top: 10px;         /* Your reduced margin */
    text-align: left;
}

.lpa-result-header {
    font-size: 1.05em; /* Reduced from 1.1em */
}

.lpa-result-address {
    font-size: 0.88em; /* Reduced from 0.95em */
    margin-top: 6px; /* Reduced from 8px */
}

.lpa-availability-status {
    font-size: 0.85em; /* Reduced from 0.9em */
    margin-top: 10px; /* Reduced from 12px */
}

.lpa-status-dot {
    width: 8px; /* Reduced from 10px */
    height: 8px; /* Reduced from 10px */
}

/* Adjust button sizes */
.lpa-toggle-checker, 
#lpa_submit_zip_search {
    padding: 6px 12px;
    font-size: 13px;
    line-height: 1.4;
}

.lpa-form-inner {
    display: flex;
    gap: 6px;
    justify-content: center; /* ADDED: This will center the input and button */
}