/* 
 * ZIP Search WP Plugin Styles
 * This stylesheet defines the appearance of the ZIP Search WP plugin on the frontend.
 */

/* Basic styles for the search form */
.zip-search-form {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.zip-search-form input[type="text"] {
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.zip-search-form input[type="submit"] {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #0073aa;
    color: white;
    cursor: pointer;
}

.zip-search-form input[type="submit"]:hover {
    background-color: #005177;
}

/* Styles for displaying results */
.zip-search-results {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
}