/* Form styling */
.form-container {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

.form-section {
    display: none;
    margin-bottom: 20px;
}

.form-section.visible {
    display: block;
}

.form-band {
    position: relative;
    width: 100%;
}

.form-field {
    position: absolute;
    box-sizing: border-box;
}

.form-field input[type="text"] {
    width: 100%;
    height: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-field label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-field.heading {
    font-size: 1.2em;
    font-weight: bold;
}

.form-field.image {
    border: 1px dashed #ccc;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-field.image img {
    max-width: 100%;
    max-height: 100%;
}

.form-field.checkbox {
    display: flex;
    align-items: center;
}

.form-field.checkbox input {
    margin-right: 8px;
}

.form-field.button {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-field.button:hover {
    background: #0056b3;
} 