.location-link_custom {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.widget-container,
.widget-container_custom {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.location-container,
.location-container_custom {
    margin-top: 0px;
}

.location-text,
.location-text_custom {
    margin-bottom: 0px;
}

.zipcode-input::placeholder,
.zipcode-input_custom::placeholder {
    font-size: 0.8em; /* Default size */
    opacity: 1; /* Ensures visibility */
}

@media (max-width: 480px) {
    .zipcode-input::placeholder,
    .zipcode-input_custom::placeholder {
        font-size: 0.7em; /* Smaller size for mobile */
    }
}

/* Vendor prefixes for better compatibility */
.zipcode-input::-webkit-input-placeholder,
.zipcode-input_custom::-webkit-input-placeholder {
    font-size: 0.8em;
}

.zipcode-input::-moz-placeholder,
.zipcode-input_custom::-moz-placeholder {
    font-size: 0.8em;
}

.zipcode-input:-ms-input-placeholder,
.zipcode-input_custom:-ms-input-placeholder {
    font-size: 0.8em;
}

@media (max-width: 480px) {
    .zipcode-input::-webkit-input-placeholder,
    .zipcode-input_custom::-webkit-input-placeholder {
        font-size: 0.7em;
    }

    .zipcode-input::-moz-placeholder,
    .zipcode-input_custom::-moz-placeholder {
        font-size: 0.7em;
    }

    .zipcode-input:-ms-input-placeholder,
    .zipcode-input_custom:-ms-input-placeholder {
        font-size: 0.7em;
    }
}

/* Normal state */
.zipcode-button,
.zipcode-button_custom {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 1em;
    font-weight: 600;
    display: inline-block;
    color: white !important; /* Force white text color */
    background-color: #1D7C8E !important; /* Force background color */
    border: none !important;
    border-radius: 25px !important; /* Force rounded corners */
    padding: 15px 20px !important; /* Ensure consistent padding */
    margin: 5px 0 !important; /* Ensure consistent margin */
    cursor: pointer;
    width: 150px !important; /* Set width to 350px */
}

/* Hover and focus states */
.zipcode-button:hover,
.zipcode-button:focus {
    background-color: #1D7C8E !important; /* Same background on hover */
    color: white !important; /* Force white text color */
    border-radius: 25px !important; /* Force rounded corners on hover */
    padding: 15px 20px !important; /* Same padding on hover */
    cursor: pointer;
    width: 150px !important; /* Maintain width on hover */
}
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
    border-radius: 15px;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 15px;
    width: 450px; /* Could be more or less, depending on screen size */
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 0px;
    font-weight: bold;
       cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}