/* Container for the search box */
#slo-zip-finder-search {
    margin: 0 auto 20px;
    max-width: 420px;
    border-radius: 4px;
    border: 5px solid #c7d2fe;
    background: #ffffff;
}

#slo-zip-finder-search input{
	border:none!important;
}

/* Search input field */
.slo-zip-finder-input {
    width: calc(100% - 70px);
    padding: 10px 15px;
    border: 0px solid;
    border-radius: 26px 7px 7px 26px;
    font-size: 1.1rem;
    vertical-align: middle;
}

.slo-zip-finder-input:focus {
    outline: none;
	
}

/* Search button */
.slo-zip-finder-button {
    width: 64px;
    border: none;
    cursor: pointer;
    vertical-align: middle;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 32px 32px;
    background-position: 50% center;
}

.slo-zip-finder-button:hover,
.slo-zip-finder-button:active,
.slo-zip-finder-button:focus {
    background-color: transparent;
}

/* Alert message styling */
.slo-zip-finder-alert {
    color: red;
    text-align: center;
    margin: 10px auto;
    display: none;
    max-width: 500px;
}

/* Results container */
.slo-zip-finder-results {
    margin: 20px 0;
}

/* Each result row */
.slo-zip-finder-result-wrap {
	width: calc(50% - 20px);
    padding: 15px 25px;
    margin: 0 10px 20px;
    border-radius: 5px;
    background-color: #ffffff;
    color: #2d2d2e;
	float:left;
}

.slo-zip-finder-result-wrap:nth-child(even) {
    background-color: #eef2ff;
}

/* Left column for ZIP and location details */
.slo-zip-finder-column {
    width:100%;
}

.slo-zip-finder-zip {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media only screen and (max-width: 860px) {
    #slo-zip-finder-search {
        max-width: 420px;
    }

.slo-zip-finder-input {
    font-size: 1.2rem;
    }
.slo-zip-finder-result-wrap {
    width: calc(100% - 40px);
    }
}

