/* ================================
   RESET Y ESTILOS BASE
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-primary);
    background: var(--color-surface-primary);
    color: var(--color-text-primary);
    line-height: var(--line-height-relaxed);
    overflow: hidden;
}

/* ================================
   SCROLLBARS PERSONALIZADOS
   ================================ */

.messages-container::-webkit-scrollbar {
    width: 8px;
}

.messages-container::-webkit-scrollbar-track {
    background: transparent;
}

.messages-container::-webkit-scrollbar-thumb {
    background: var(--color-text-disabled);
    border-radius: var(--radius-base);
}

.messages-container::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-placeholder);
} 