/* General Styles */
.qr_module.qr_module {
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: transparent;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.qr_module h1 {
    color: white;
    font-size: 2em;
    margin-bottom: 1em;
}

.qr_module form {
    background-color: #ffffff;
    padding: 1.5em;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.qr_module form label {
    font-size: 1em;
    margin-bottom: 0.5em;
    color: #555;
}

.qr_module form p {
    margin: 10px 0;

}

.qr_module form input[type="text"],
.qr_module form input[type="color"] {
    padding: 0.3em;
    margin: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
}

.qr_module .errorlist {
    color: red;
    font-size: 0.8em;
    margin-bottom: 0.5em;
}

.qr_module button {
    background-color: #007BFF;
    color: #fff;
    padding: 0.75em 1.5em;
    width: 100%;
    margin: auto;
    font-size: 1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.qr_module button:hover {
    background-color: #0056b3;
}

/* QR Code Display */
.qr_module div {
    margin-top: 1em;
    text-align: center;
}

.qr_module div button {
    background-color: #777;
    margin: 1em 0;
}

.qr_module div button:hover {
    background-color: #555;
}

.qr_module div img {
    width: auto;
    max-width: 250px;
    height: auto;
}