/* Reset default margin and padding for elements */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Style the main form container */
#anti-counterfeit-form {
    margin: 20px;
}

/* Style the input field for the anti-counterfeit code */
#anti-counterfeit-code {
    width: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Style the submit button */
#anti-counterfeit-form input[type="submit"] {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
/* Text style in button */
#anti-counterfeit-result {
    margin: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: left; /* 将文本内容左对齐 */
}


/* Style any additional messages inside the result container */
#anti-counterfeit-result p {
    font-weight: bold;
}

/* Add a hover effect to the submit button */
#anti-counterfeit-form input[type="submit"]:hover {
    background-color: #005ba7;
}