/* Existing styles for original button */
#generate-qr {
    background-color: #0075bb;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
#generate-qr:hover {
    background-color: #005f99;
}

/* New styles for newline button */
#generate-newline-qr {
    background-color: #0075bb;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}
#generate-newline-qr:hover {
    background-color: #005f99;
}

/* Form and result div styles */
#qr-form, #newline-qr-form {
    max-width: 400px;
    margin: 20px auto;
}
#qr-code-result, #newline-qr-code-result {
    margin-top: 20px;
    text-align: center;
}