/* setup.html exclusive styles */
.danger-zone {
    margin-top: 2rem;
    border-top: 2px dashed #ef4444;
    padding-top: 1.5rem;
}
.danger-zone-title {
    color: #ef4444;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* informacion.html exclusive styles */
.info-card-header {
    background: linear-gradient(135deg, var(--bs-primary) 0%, #2563eb 100%);
    color: white;
    padding: 2rem;
    border-radius: 0.75rem 0.75rem 0 0;
}
.protocolo-content {
    background: white;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

/* Quill read-only overrides in informacion.html */
.protocolo-content .ql-editor {
    padding: 0;
    height: auto;
    overflow-y: visible;
    font-size: 0.75rem;
    line-height: 1.5;
}
.protocolo-content .ql-editor h1 { font-size: 1.25rem; }
.protocolo-content .ql-editor h2 { font-size: 1.1rem; }
.protocolo-content .ql-editor h3 { font-size: 1rem; }
.protocolo-content .ql-editor p { margin-bottom: 0.5rem; }

/* Reusable components extracted from inline styles */
.btn-google {
    border-radius: 8px;
    padding: 0.65rem;
    font-weight: 500;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
}
.btn-google:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.auth-card {
    max-width: 520px;
    margin: 0 auto;
}
