:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;

    --font-size-base: 14px;
    --font-size-sm: 12px;
    --font-size-lg: 16px;
    --font-size-xl: 18px;

    --border-radius: 8px;
    --box-shadow: 0 2px 8px rgba(0,0,0,0.1);

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
}

body {
    font-size: var(--font-size-base);
}

/* Fix Modal Z-Index to be above toolbar and sidebar */
div.modal-backdrop.show,
#modal-backdrop.show
div.modal-backdrop.fade {
    
}
.modal-backdrop {
    display:none !important ;
}
.modal.show,
.modal.fade {
    z-index: 1055 !important;
}

.modal-dialog {
    z-index: 1056 !important;
}

.modal-content {
    z-index: 10057 !important;
}
