/*
 * Copyright (c) 2026 Evo~ERP, Inc. All rights reserved.
 *
 * Application-wide EvoERP styles belong here. Keep view-specific rules in the
 * stylesheet owned by that view's module.
 */

@import url("./admin-views.css");

/*@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');*/

html {
    --aura-font-family: Noto Sans, Inter, Roboto, sans-serif;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

vaadin-icon[theme~="spin"] {
    animation: spin 1s linear infinite;
}
