/* local/thforms/styles.css */

/* Contenedor principal del campo */
.fitem {
    margin-bottom: 15px;
}

/* Grupo de tipo de campo */
.field-type-group {
    margin-bottom: 10px;
}

/* Textarea de opciones y su contenedor */
.field-options-container {
    display: none; /* Oculto inicialmente */
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #1177d1;
}

/* Textarea específico */
.field-options-textarea {
    width: 100%;
    min-height: 80px;
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    resize: vertical;
}

/* Texto de ayuda */
.field-options-help {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    display: block;
}

/* Checkbox de requerido */
.field-required-checkbox {
    margin-top: 15px;
}

/* Textarea de opciones */
.field-options-textarea {
    min-height: 100px;
    width: 300px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    resize: vertical;
    transition: all 0.3s ease;
    background-color: white;
}

/* Placeholder con mejor estilo */
.field-options-textarea::placeholder {
    color: #6c757d;
    opacity: 0.7;
    font-size: 0.9em;
}

/* Efecto hover y focus */
.field-options-textarea:hover {
    border-color: #adb5bd;
}

.field-options-textarea:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: 0;
}

/* Estilos para el banner */
.thforms-banner-container {
    border-radius: 8px;
}