/* Styles for the container */
#pc-inputContainer {
    width: 100%;
    margin: 0 auto;
}

/* Styles for the input field when postcode matches */
#pc-postcodeInput.pc-postcode-match {
    background-color: #a6f1a6;
}

/* Styles for the input field */
#pc-postcodeInput {
    width: 100%;
    height: 44px;
    padding: 0 10px;
    box-sizing: border-box;
    font-size: 1rem;
    border: 1px solid #555555;
    border-radius: 4px;
}

/* Styles for the placeholder text in the input field */
#pc-postcodeInput::placeholder {
    color: #545454;
    opacity: 1;
}

/* Styles for the message */
#pc-message {
    color: inherit;
    margin-top: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
}

/* New class for a valid postcode message */
#pc-message.pc-message-valid {
    color: #ABF6B1;
}

#pc-message.pc-invalid {
    color: inherit;
}