/* CSS Variables for consistent theming */
:root {
    --primary-color: #0b519d;
}

/* ============================================
   COMMON STYLES FOR INVENTORY PAGES
   ============================================ */

/* Global DM Sans Font Application */
* {
    font-family: 'DM Sans', sans-serif !important;
}

/* Select2 Custom Styling - Remove border and arrow */
.select2-container--default .select2-selection--single {
    border: none !important;
    background: transparent !important;
}

.select2-container--default .select2-selection__arrow {
    display: none !important;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border: none !important;
}

/* Loading spinner animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* AG Grid pagination row summary panel - Hide the "1 to 15 of 89" text */
.ag-paging-row-summary-panel {
    display: none !important;
}

/* AG Grid pagination buttons - Ensure visibility */
.ag-paging-button {
    opacity: 1 !important;
    visibility: visible !important;
}

.ag-paging-first-page-button,
.ag-paging-previous-page-button,
.ag-paging-next-page-button,
.ag-paging-last-page-button {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}
