/*
Theme Name: Astra Child
Template: astra
Author: Your Name
Version: 1.0
Description: A child theme for Astra.
*/

/* Ensure child styles load */
@import url("../astra/style.css");

.site-button {
    background-color: #0056b3; /* Adjust to match your site's colour */
    colour: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.site-button:hover {
    background-color: #003f8a; /* Darker shade for hover */
}
\.postcode-button-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Adds space between the field and the button */
}

#lookup-address-button {
    padding: 10px 20px; /* Adjust button size to match the input field height */
    font-size: 16px;
}

.postcode-button-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Adds space between the field and button */
}

#lookup-address-button {
    background-color: #1e73be; /* Matches the "Read More" button background */
    color: #ffffff; /* White text */
    border: none; /* Removes any unwanted borders */
    padding: 10px 20px; /* Adjusts size */
    font-size: 16px; /* Matches font size */
    border-radius: 5px; /* Rounded corners */
    text-transform: uppercase; /* Matches "Read More" styling */
    cursor: pointer;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); /* Adds slight shadow like the other buttons */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

#lookup-address-button:hover {
    background-color: #164d7a; /* Darker blue on hover */
}

