/* Concertada Digital by Despapela – Config Plugin */

.cdbd-wrap {
    font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
    color: #1f2937;
}

/* Focus ring color global para Tailwind */
.cdbd-wrap input:focus,
.cdbd-wrap select:focus,
.cdbd-wrap textarea:focus {
    --tw-ring-color: #8DC63F;
    outline-color: #8DC63F;
}

/* Scroll suave en tablas */
.cdbd-wrap .overflow-x-auto {
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

/* Animación de entrada tabs */
.cdbd-tab-content:not(.hidden) {
    animation: cdbd-fadein 0.18s ease;
}

@keyframes cdbd-fadein {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Responsive tabla BD */
@media (max-width: 640px) {
    .cdbd-wrap table td,
    .cdbd-wrap table th {
        padding: 6px 8px;
        font-size: 11px;
    }
}
