/* Estilos generales para el formulario */
.webform-submission-devoluciones-add-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Títulos y etiquetas */
.webform-submission-devoluciones-add-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

/* Campos de entrada */
.webform-submission-devoluciones-add-form .form-control,
.webform-submission-devoluciones-add-form .form-select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.webform-submission-devoluciones-add-form .form-control:focus,
.webform-submission-devoluciones-add-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Campos específicos */
#edit-nombre-completo,
#edit-descripcion,
#edit-numero-de-celular {
    width: 100%;
    max-width: 100%;
}

/* Select de producto */
#edit-producto {
    width: 100%;
    background-color: white;
}

/* Grupo de checkboxes */
#edit-motivo--wrapper {
    background-color: white;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

#edit-motivo--wrapper legend {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

/* Checkboxes individuales */
.checkbox.form-check {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.checkbox.form-check .form-check-input {
    margin-right: 10px;
    margin-top: 0.25rem;
}

/* Área de texto */
textarea#edit-descripcion {
    min-height: 120px;
    resize: vertical;
}

/* Campo de archivos */
#edit-evidencias .form-file {
    padding: 0.5rem;
    background-color: white;
}

#edit-evidencias .btn-primary {
    margin-top: 10px;
    padding: 0.5rem 1.5rem;
}

/* Botón de envío */
#edit-submit {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

#edit-submit:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Mensajes de descripción */
.webform-element-description {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .webform-submission-devoluciones-add-form {
        padding: 1rem;
        margin: 1rem;
    }
    
    #edit-motivo--wrapper {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .webform-submission-devoluciones-add-form {
        padding: 0.75rem;
        margin: 0.5rem;
    }
    
    #edit-submit {
        width: 100%;
    }
}