    @font-face {
			font-family: Vazir;
			src: url('assets/fonts/Vazir.eot');
			src: url('assets/fonts/Vazir.eot?#iefix') format('embedded-opentype'),
			url('assets/fonts/Vazir.woff2') format('woff2'),
			url('assets/fonts/Vazir.woff') format('woff'),
			url('assets/fonts/Vazir.ttf') format('truetype');
			font-weight: normal;
		}

		@font-face {
			font-family: Vazir;
			src: url('assets/fonts/Vazir-Bold.eot');
			src: url('assets/fonts/Vazir-Bold.eot?#iefix') format('embedded-opentype'),
			url('assets/fonts/Vazir-Bold.woff2') format('woff2'),
			url('assets/fonts/Vazir-Bold.woff') format('woff'),
			url('assets/fonts/Vazir-Bold.ttf') format('truetype');
			font-weight: bold;
		}

		@font-face {
			font-family: Vazir;
			src: url('assets/fonts/Vazir-Light.eot');
			src: url('assets/fonts/Vazir-Light.eot?#iefix') format('embedded-opentype'),
			url('assets/fonts/Vazir-Light.woff2') format('woff2'),
			url('assets/fonts/Vazir-Light.woff') format('woff'),
			url('assets/fonts/Vazir-Light.ttf') format('truetype');
			font-weight: 300;
		}

		@font-face {
			font-family: Vazir;
			src: url('assets/fonts/Vazir-Medium.eot');
			src: url('assets/fonts/Vazir-Medium.eot?#iefix') format('embedded-opentype'),
			url('assets/fonts/Vazir-Medium.woff2') format('woff2'),
			url('assets/fonts/Vazir-Medium.woff') format('woff'),
			url('assets/fonts/Vazir-Medium.ttf') format('truetype');
			font-weight: 500;
		}

		@font-face {
			font-family: Vazir;
			src: url('assets/fonts/Vazir-Thin.eot');
			src: url('assets/fonts/Vazir-Thin.eot?#iefix') format('embedded-opentype'),
			url('assets/fonts/Vazir-Thin.woff2') format('woff2'),
			url('assets/fonts/Vazir-Thin.woff') format('woff'),
			url('assets/fonts/Vazir-Thin.ttf') format('truetype');
			font-weight: 100;
		}

		@font-face {
			font-family: Vazir;
			src: url('assets/fonts/Vazir-Black.eot');
			src: url('assets/fonts/Vazir-Black.eot?#iefix') format('embedded-opentype'),
			url('assets/fonts/Vazir-Black.woff2') format('woff2'),
			url('assets/fonts/Vazir-Black.woff') format('woff'),
			url('assets/fonts/Vazir-Black.ttf') format('truetype');
			font-weight: 900;
		}
        
        * {
            font-family: 'Vazir', Tahoma, sans-serif;
        }

        body {
            box-sizing: border-box;
            margin: 0;
            overflow-x: hidden;
            transition: background 0.5s ease, color 0.5s ease;
        }

        body.dark-mode {
            background: linear-gradient(135deg, #0f172a, #1e293b);
            color: white;
        }

        body.light-mode {
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            color: #1e293b;
        }

        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.5;
            pointer-events: none;
        }

        /* Fixed Header and Footer */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            padding: 1rem 0;
        }

        .dark-mode .fixed-header {
            background: rgba(15, 23, 42, 0.9);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-mode .fixed-header {
            background: rgba(248, 250, 252, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .fixed-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            padding: 1rem 0;
        }

        .dark-mode .fixed-footer {
            background: rgba(15, 23, 42, 0.9);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-mode .fixed-footer {
            background: rgba(248, 250, 252, 0.9);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .main-content {
            padding-top: 120px;
            padding-bottom: 80px;
        }

        /* Login Button Styles */
        .login-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .dark-mode .login-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .light-mode .login-btn {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .dark-mode .login-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
        }

        .light-mode .login-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Login Modal Styles */
        .login-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .login-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .login-modal-content {
            width: 90%;
            max-width: 400px;
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            transform: scale(0.9);
            transition: all 0.3s ease;
        }

        .dark-mode .login-modal-content {
            background: rgba(30, 41, 59, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
        }

        .light-mode .login-modal-content {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
        }

        .login-modal.active .login-modal-content {
            transform: scale(1);
        }

        .login-form-group {
            margin-bottom: 1.5rem;
        }

        .login-form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .dark-mode .login-form-label {
            color: rgba(255, 255, 255, 0.9);
        }

        .light-mode .login-form-label {
            color: #1e293b;
        }

        .login-form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .dark-mode .login-form-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .light-mode .login-form-input {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .login-form-input:focus {
            outline: none;
        }

        .dark-mode .login-form-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .light-mode .login-form-input:focus {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .login-submit-btn {
            width: 100%;
            padding: 0.75rem;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .dark-mode .login-submit-btn {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
        }

        .light-mode .login-submit-btn {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: white;
        }

        .login-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
        }

        .close-modal-btn {
            position: absolute;
            top: 1rem;
            left: 1rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dark-mode .close-modal-btn {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .light-mode .close-modal-btn {
            background: rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .close-modal-btn:hover {
            transform: scale(1.1);
        }

        .dark-mode .close-modal-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .light-mode .close-modal-btn:hover {
            background: rgba(0, 0, 0, 0.2);
        }
        /* User Menu Styles */
        .user-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.5rem;
            min-width: 200px;
            border-radius: 12px;
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .dark-mode .user-menu {
            background: rgba(30, 41, 59, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
        }

        .light-mode .user-menu {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(20px);
        }

        .user-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .user-menu-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .dark-mode .user-menu-item {
            color: rgba(255, 255, 255, 0.9);
        }

        .light-mode .user-menu-item {
            color: #1e293b;
        }

        .dark-mode .user-menu-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .light-mode .user-menu-item:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .user-menu-item svg {
            width: 18px;
            height: 18px;
        }

        .user-menu-divider {
            height: 1px;
            margin: 0.5rem 0;
        }

        .dark-mode .user-menu-divider {
            background: rgba(255, 255, 255, 0.1);
        }

        .light-mode .user-menu-divider {
            background: rgba(0, 0, 0, 0.1);
        }

        .login-container {
            position: relative;
        }
        .system-card {
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 1.5rem;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .dark-mode .system-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .light-mode .system-card {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .system-card:hover {
            transform: translateY(-10px) scale(1.05);
            z-index: 10;
        }

        .dark-mode .system-card:hover {
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .light-mode .system-card:hover {
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(0, 0, 0, 0.2);
        }

        .system-card:hover .system-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .system-icon-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 1rem;
            position: relative;
            transition: all 0.5s ease;
        }

        .system-icon {
            transition: all 0.5s ease;
        }

        .floating {
            animation-name: floating;
            animation-duration: 3s;
            animation-iteration-count: infinite;
            animation-timing-function: ease-in-out;
        }

        @keyframes floating {
            0% { transform: translate(0, 0px); }
            50% { transform: translate(0, -10px); }
            100% { transform: translate(0, 0px); }
        }

        .glow {
            filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
        }

        .light-mode .glow {
            filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
        }

        .page-title {
            background: linear-gradient(to right, #38bdf8, #818cf8, #c084fc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradient 8s ease infinite;
            background-size: 200% auto;
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 1rem;
        }

        .search-bar {
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            width: 100%;
            max-width: 500px;
            transition: all 0.3s ease;
        }

        .dark-mode .search-bar {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .light-mode .search-bar {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .search-bar:focus {
            outline: none;
        }

        .dark-mode .search-bar:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }

        .light-mode .search-bar:focus {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }

        .category-pill {
            border-radius: 50px;
            padding: 0.5rem 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dark-mode .category-pill {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .light-mode .category-pill {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .dark-mode .category-pill:hover, .dark-mode .category-pill.active {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .light-mode .category-pill:hover, .light-mode .category-pill.active {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(0, 0, 0, 0.2);
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .notification-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            transform: translate(30%, -30%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translate(30%, -30%) scale(1); }
            50% { transform: translate(30%, -30%) scale(1.2); }
        }

        .tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.875rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
            margin-bottom: 8px;
        }

        .dark-mode .tooltip {
            background: rgba(0, 0, 0, 0.8);
            color: white;
        }

        .light-mode .tooltip {
            background: rgba(0, 0, 0, 0.7);
            color: white;
        }

        .system-card:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }

        .light-mode .system-card p {
            color: #475569;
        }

        .light-mode .system-card h3 {
            color: #1e293b;
        }

        /* Theme toggle button */
        .theme-toggle {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 100;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .dark-mode .theme-toggle {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .light-mode .theme-toggle {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .theme-toggle:hover {
            transform: scale(1.1);
        }

        .theme-toggle svg {
            width: 24px;
            height: 24px;
            transition: all 0.5s ease;
        }

        .dark-mode .theme-toggle svg {
            color: white;
            transform: rotate(0deg);
        }

        .light-mode .theme-toggle svg {
            color: #1e293b;
            transform: rotate(180deg);
        }

        .theme-toggle .sun-icon {
            opacity: 0;
            position: absolute;
        }

        .theme-toggle .moon-icon {
            opacity: 0;
            position: absolute;
        }

        .dark-mode .theme-toggle .moon-icon {
            opacity: 1;
        }

        .light-mode .theme-toggle .sun-icon {
            opacity: 1;
        }

        /* Forms Table Styles */
        .forms-container {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .forms-container.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .systems-container {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .systems-container.hidden {
            opacity: 0;
            transform: translateY(-20px);
            pointer-events: none;
        }

        .forms-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .dark-mode .forms-table {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .light-mode .forms-table {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .forms-table th {
            padding: 1rem;
            text-align: right;
            font-weight: bold;
        }

        .dark-mode .forms-table th {
            background: rgba(255, 255, 255, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .light-mode .forms-table th {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .forms-table td {
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .light-mode .forms-table td {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .forms-table tr:last-child td {
            border-bottom: none;
        }

        .forms-table tr {
            transition: all 0.3s ease;
        }

        .dark-mode .forms-table tr:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .light-mode .forms-table tr:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .download-btn {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dark-mode .download-btn {
            background: rgba(79, 70, 229, 0.6);
            color: white;
        }

        .light-mode .download-btn {
            background: rgba(79, 70, 229, 0.8);
            color: white;
        }

        .dark-mode .download-btn:hover {
            background: rgba(79, 70, 229, 0.8);
            transform: translateY(-2px);
        }

        .light-mode .download-btn:hover {
            background: rgba(79, 70, 229, 1);
            transform: translateY(-2px);
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }

        .dark-mode .back-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }

        .light-mode .back-btn {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #1e293b;
        }

        .dark-mode .back-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(5px);
        }

        .light-mode .back-btn:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateX(5px);
        }

        /* Animation for table rows */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .forms-table tr {
            opacity: 0;
            animation: fadeInUp 0.5s forwards;
        }

        .forms-table tr:nth-child(1) { animation-delay: 0.1s; }
        .forms-table tr:nth-child(2) { animation-delay: 0.2s; }
        .forms-table tr:nth-child(3) { animation-delay: 0.3s; }
        .forms-table tr:nth-child(4) { animation-delay: 0.4s; }
        .forms-table tr:nth-child(5) { animation-delay: 0.5s; }
        .forms-table tr:nth-child(6) { animation-delay: 0.6s; }
        .forms-table tr:nth-child(7) { animation-delay: 0.7s; }
        .forms-table tr:nth-child(8) { animation-delay: 0.8s; }
        .forms-table tr:nth-child(9) { animation-delay: 0.9s; }
        .forms-table tr:nth-child(10) { animation-delay: 1.0s; }