.etg-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #F4F7F3;
    border: 1px solid #034737;
    border-radius: 8px;
}

.etg-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.etg-form label {
    margin-top: 10px;
}

.etg-form input, .etg-form select, .etg-form button {
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    max-width: 400px;
}

.etg-form button {
    background-color: #034737; /* Adjust this according to your theme */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.etg-form button:hover {
    background-color: #A9FF9B; /* Adjust this according to your theme */
    color: #034737;
}

.etg-result {
    margin-top: 20px;
    text-align: center;
}

.etg-template-preview img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.etg-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px; /* Increased space */
}

.etg-buttons button {
    background-color: #034737; /* Adjust this according to your theme */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
}

.etg-buttons button:hover {
    background-color: #A9FF9B; /* Adjust this according to your theme */
    color: #034737;
}

/* Adjust the theme selection container to be full width and centered */
.theme-selection {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.theme-selection select {
    flex: 1;
    max-width: 400px;
}

.theme-selection a {
    margin-left: 10px;
}
