/* Estilos globales y utilidades responsivas */
body {
    background-color: #f4f7f6;
    color: #2e4057;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Ocultar scrollbar secundario en móviles */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Transiciones fluidas para pestañas */
.srv-tab, .sol-tab {
    transition: all 0.2s ease-in-out;
}