body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    background-image: url('images/wizard-bg.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    padding-top: 20px;
}

#main-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-sizing: border-box;
}

#alchemy-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

form {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button[type="submit"], button#new-qr-button, button#email-qr-button {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

button[type="submit"]:hover, button#new-qr-button:hover, button#email-qr-button:hover {
    background-color: #0056b3;
}

#result {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#qr-code {
    margin-top: 10px;
    width: auto;
    height: auto;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#confirmed-url {
    font-weight: bold;
    color: #333;
    word-break: break-all;
}

#color-options {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 10px; /* Space between the buttons */
    justify-items: start; /* Align buttons to the start */
}

#color-options label {
    font-weight: normal;
    font-size: 12px; /* Smaller font size */
    display: flex;
    align-items: center;
}

#color-options input[type="radio"] {
    width: 12px; /* Smaller radio button */
    height: 12px; /* Smaller radio button */
    margin-right: 5px; /* Space between radio button and text */
    vertical-align: middle;
}