﻿* {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 transparent;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --color-primary: #1a4fb3;
    --color-primary-dark: #123a85;
    --color-primary-mid: #16479e;
    --color-primary-light: #2a63c9;
    --color-accent: #ffd75a;
    --color-accent-rgb: 255, 215, 90;
    --color-accent-light: #ffe48a;
    --color-accent-dark: #e6c04a;
    --color-accent-dark-rgb: 230, 192, 74;
    --color-white: #ffffff;
    --color-text: #152238;
    --color-text-muted: #5c6b82;
    --color-border: #e2e8f0;
    --color-bg: #f0f3f9;
    --color-surface: #ffffff;
    --color-disabled-bg: #b8c4d6;
    --color-disabled-text: #7a8aa3;
    --radius-sm: 12px;
    --radius-md: 12px;
    --radius-lg: 12px;
    --radius-xl: 12px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --app-mobile-width: 500px;
    --app-mobile-height: 844px;
    --font-small: 12px;
    --font-large: 14px;
    --bs-btn-box-shadow: none;
    --bs-btn-active-box-shadow: none;
    --bs-btn-focus-box-shadow: none;
    --bs-box-shadow: none;
    --bs-box-shadow-sm: none;
    --bs-box-shadow-lg: none;
    --bs-box-shadow-inset: none;
}

@font-face {
    font-family: 'Kahroba';
    src: url('/font/Kahroba-FD-RG.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Kahroba';
    src: url('/font/Kahroba-FD-B.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

html, body {
    direction: rtl;
    font-family: 'Kahroba' !important;
    font-size: 14px !important;
    background-color: #dce4f0;
    scroll-behavior: smooth;
    overflow: hidden !important;
    padding-right: 0 !important;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 12px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 12px;
    transition: background 0.3s ease;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
