.create-form {
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: #444;
}

.create-form label {
    margin-bottom: 4px;
    text-transform: uppercase;
}

.create-form input,
.create-form textarea {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    width: 100%;
    margin-bottom: 16px;
}

.create-form textarea {
    resize: vertical;
    min-height: 120px;
}

.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    width: 100%;
}

.button-row .button {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 8px 0;
    font-family: 'Open Sans', sans-serif;
}

.button-secondary {
    background-color: #96bfb3;
}

.button-secondary:hover {
    background-color: #7ec1ad;
}

.create-preview {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.preview-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 0;
    margin-bottom: 12px;
}

#preview-canvas {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.infobox {
    margin: 12px 0;
    padding: 12px 16px;
    background-color: #96bfb3;
    border: 1px solid #7ec1ad;
    border-left: 4px solid #000;
    border-radius: 4px;
    color: #000;
    line-height: 1.5;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}

.infobox:empty {
    display: none;
}

.checkbox-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #444;
    text-transform: none;
}

.checkbox-item label {
    text-transform: none;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 3px 0 0;
    flex-shrink: 0;
}

.consent-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #444;
    margin: 0 0 12px;
}