/**
 * ST Consent Multisite — Estilos del bloque de consentimiento
 *
 * Clases con prefijo st-consent- para evitar colisiones con cualquier theme.
 * Cada theme encola este archivo si necesita los estilos del consentimiento.
 */

.st-consent-summary {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #374151;
}

.st-consent-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.st-consent-checkbox-wrapper input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    cursor: pointer;
}

.st-consent-aviso {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #dc2626;
}

.st-consent-submit-btn {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.st-consent-submit-btn_ENABLED {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}
