body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;

}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.preview {
    margin-top: 20px;
}

.badge {
    width: 300px;
    height: 200px;
    background-image: url('/images/nametagblank.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    border: 2px solid #000;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000; /* Ensure text color contrasts with the background image */
    font-weight: bold;
}

.bold-text {
    margin: 5px 0;
    font-size: 1.2em;
}