/**
 * Health.AI - Common CSS
 * Shared styles used across all apps
 */

/* ─── Custom Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #3a3a3a;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* ─── Message / Element Animations ───────────────────────────────── */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-animate {
    animation: slideIn 0.2s ease-out;
}

/* ─── Sidebar Transitions ────────────────────────────────────────── */
.sidebar-transition {
    transition: transform 0.3s ease-in-out;
}
