/**
 * Agency Postcode Finder - Custom Styles
 */

/* Make container transparent */
.apf-container {
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Input field with custom border */
.apf-input {
    border: 1px solid #512DA8;
}

/* Input field focus state */
.apf-input:focus {
    border-color: #512DA8;
    outline-color: #512DA8;
    box-shadow: 0 0 0 1px #512DA8;
    outline: none;
}

/* Custom deep purple button (#512DA8) */
.apf-button {
    background-color: #512DA8;
    border-color: #512DA8;
    color: white;
}

.apf-button:hover {
    background-color: #4527A0;
    border-color: #4527A0;
}

/* Purple Button Style */
.apf-button.purple-button {
    background-color: #512DA8;
    border-color: #512DA8;
    color: white;
}

.apf-button.purple-button:hover {
    background-color: #512DA8;
    border-color: #512DA8;
}

/* Other color variations you might want to use */
.apf-button.blue-button {
    background-color: #512DA8;
    border-color: #512DA8;
    color: white;
}

.apf-button.green-button {
    background-color: #46b450;
    border-color: #46b450;
    color: white;
}

.apf-button.red-button {
    background-color: #dc3232;
    border-color: #dc3232;
    color: white;
}
