/* ============================= */
/* BASE GLOBAL */
/* ============================= */

body {
    font-family: "Segoe UI", sans-serif;
    font-size: 13px;
    background-color: var(--crm-bg);
    color: var(--crm-text);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--crm-text-strong);
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

a {
    text-decoration: none;
}

hr {
    opacity: 0.06;
}

.fade-in {
    animation: fadeInSoft 0.2s ease-in;
}

@keyframes fadeInSoft {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}