body {
    font-family: sans-serif;
    margin: 1rem;
    background-color: #f0f0f0;
    /* Grey background for the entire body */
}

h1 {
    text-align: center;
    margin-bottom: 50vh;
}

.container {
    width: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);

}

.input-container {
    display: flex;
    /* Arrange elements horizontally */
    flex-direction: column;
    /* Stack elements vertically */
    width: 100%;
    gap: 1.0rem;
    /* Add some space between label and input */
}

label {
    font-weight: bold;
    /* Make label text slightly bolder */
}

input[type="text"] {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea[type="text"] {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    min-height: 500px;
    /* Optional: Set a minimum height for the textarea */
}

button {
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.qr-code {
    width: 300px;
    height: 300px;
    border: 1px solid #ccc;
}

.options,
.download {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download a {
    text-decoration: none;
    color: #007bff;
}