:root{--primary:#dc2626;--primary-dark:#b91c1c;--accent:#f59e0b;--accent-dark:#d97706;--success:#16a34a;--danger:#ef4444;--bg-body:#f3f4f6;--bg-card:#fff;--bg-input:#fff;--bg-sidebar:linear-gradient(135deg,#1a1a2e,#16213e);--text-primary:#1e293b;--text-secondary:#64748b;--text-inverse:#fff;--border-color:#e5e7eb;--shadow-sm:0 1px 2px 0 rgba(0,0,0,.05);--shadow-md:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);--shadow-card:0 4px 20px rgba(0,0,0,.08);--sidebar-width:260px}[data-theme=dark]{--bg-body:#0f172a;--bg-card:#1e293b;--bg-input:#334155;--bg-sidebar:#020617;--text-primary:#f8fafc;--text-secondary:#94a3b8;--text-inverse:#f8fafc;--border-color:#334155;--shadow-sm:none;--shadow-md:0 4px 6px -1px rgba(0,0,0,.5);--shadow-card:0 4px 20px rgba(0,0,0,.4)}[dir=rtl]{text-align:right}*{box-sizing:border-box;margin:0;padding:0}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;background:var(--bg-body);color:var(--text-primary);line-height:1.6;overflow-x:hidden;transition:background-color .3s ease,color .3s ease}.mainLayout{display:flex;min-height:100vh}.mainContent{flex:1 1;padding:2rem;min-height:100vh;margin-left:var(--sidebar-width);width:calc(100% - var(--sidebar-width));transition:margin .3s ease}[dir=rtl] .mainContent{margin-left:0;margin-right:var(--sidebar-width)}.page{max-width:1400px;margin:0 auto}.pageHeader{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;flex-wrap:wrap;gap:1rem}.pageTitle{font-size:2rem;font-weight:700;color:var(--text-primary)}.pageSubtitle{font-size:1rem;color:var(--text-secondary);margin-top:.25rem}.cardsGrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));grid-gap:1.25rem;gap:1.25rem;margin-bottom:2rem}.btn{display:inline-flex;align-items:center;gap:.5rem;padding:.75rem 1.5rem;font-size:.95rem;font-weight:600;border:none;border-radius:12px;cursor:pointer;transition:all .2s ease;white-space:nowrap;-moz-user-select:none;user-select:none;-webkit-user-select:none;-webkit-tap-highlight-color:transparent}.btnPrimary{background:linear-gradient(135deg,var(--primary) 0,var(--primary-dark) 100%);color:#fff;box-shadow:0 4px 15px rgba(220,38,38,.3)}.btnPrimary:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(220,38,38,.4)}.btnSecondary{background:var(--bg-card);color:var(--text-primary);border:2px solid var(--border-color)}.btnSecondary:hover{border-color:var(--primary);color:var(--primary)}.btnSuccess{background:linear-gradient(135deg,var(--success) 0,#15803d 100%);color:#fff}.btnDanger{background:linear-gradient(135deg,var(--danger) 0,#dc2626 100%);color:#fff}.formGroup{margin-bottom:1.25rem}.formLabel{display:block;font-size:.875rem;font-weight:600;color:var(--text-primary);margin-bottom:.5rem}.formRequired{color:var(--primary)}.formInput,.formSelect,.formTextarea,select.formInput,textarea.formInput{width:100%;padding:.875rem 1rem;font-size:1rem;border:2px solid var(--border-color);border-radius:12px;transition:all .2s ease;background:var(--bg-input);color:var(--text-primary);-webkit-appearance:none;-moz-appearance:none;appearance:none}.formInput:focus,.formSelect:focus,.formTextarea:focus,select.formInput:focus,textarea.formInput:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(220,38,38,.1)}.formTextarea,textarea.formInput{resize:vertical;min-height:100px}.formActions{display:flex;gap:1rem;justify-content:flex-end;margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid var(--border-color)}.filters{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:1.5rem;padding:1rem;background:var(--bg-card);border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,.05)}.filterGroup{display:flex;flex-direction:column;gap:.25rem;min-width:120px}.filterLabel{font-size:.75rem;font-weight:600;color:var(--text-secondary);text-transform:uppercase}.filterInput{padding:.5rem .75rem;border:1px solid var(--border-color);border-radius:8px;font-size:.9rem;background:var(--bg-input);color:var(--text-primary)}.alert{padding:1rem 1.25rem;border-radius:12px;margin-bottom:1rem;font-weight:500}.alertSuccess{background:rgba(22,163,74,.1);color:#166534;border:1px solid rgba(22,163,74,.3)}[data-theme=dark] .alertSuccess{background:rgba(22,163,74,.2);color:#4ade80}.alertError{background:rgba(239,68,68,.1);color:#991b1b;border:1px solid rgba(239,68,68,.3)}[data-theme=dark] .alertError{background:rgba(239,68,68,.2);color:#f87171}.loading{display:flex;align-items:center;justify-content:center;padding:3rem;color:var(--text-secondary)}.spinner{width:40px;height:40px;border:3px solid var(--border-color);border-top-color:var(--primary);border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(1turn)}}.tableWrapper{overflow-x:auto}@media (max-width:1024px){.cardsGrid{grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){:root{--sidebar-width:70px}.mainContent{padding:1rem;margin-left:var(--sidebar-width);margin-right:0;width:calc(100% - var(--sidebar-width))}[dir=rtl] .mainContent{margin-right:var(--sidebar-width);margin-left:0}.pageTitle{font-size:1.5rem}.pageSubtitle{font-size:.85rem}.pageHeader{flex-direction:column;align-items:stretch}.cardsGrid{grid-template-columns:1fr}.filters{flex-direction:column;gap:.75rem}.filterGroup,.filterInput{width:100%}.formActions{flex-direction:column-reverse}.btn{width:100%;justify-content:center;padding:1rem}.alert{font-size:.9rem}}@media (max-width:480px){:root{--sidebar-width:60px}.mainContent{padding:.75rem}.pageTitle{font-size:1.25rem}.formInput,.formSelect,.formTextarea,select.formInput,textarea.formInput{padding:.75rem;font-size:.9rem}}@media (max-width:768px){.calculatorCard{padding:1rem!important}.calculatorCard p[style*="font-size: 2"]{font-size:1.5rem!important}.calculatorCard div[style*="grid-template-columns: repeat(3"]{grid-template-columns:1fr!important;gap:.75rem!important}}.responsiveFlex{display:flex;flex-wrap:wrap;gap:1rem}@media (max-width:768px){.responsiveFlex{flex-direction:column}.btn,.filterInput,.formInput,.formSelect{min-height:44px}input[type=date],input[type=number],input[type=text],select{font-size:16px!important}}.tableWrapper{-webkit-overflow-scrolling:touch;scrollbar-width:thin}@media (max-width:768px){.tableWrapper::-webkit-scrollbar{height:4px}.tableWrapper::-webkit-scrollbar-thumb{background:#ccc;border-radius:4px}}@supports (padding-bottom:env(safe-area-inset-bottom)){.mainContent{padding-bottom:calc(1rem + env(safe-area-inset-bottom))}}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}.receipt-container{display:none}@media print{body *{visibility:hidden}body{margin:0;padding:0;background:#fff!important;-webkit-print-color-adjust:exact;print-color-adjust:exact;font-family:Arial,sans-serif;color:#333}.receipt-container{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;flex-direction:column;justify-content:space-between}.receipt-container,.receipt-container *{visibility:visible!important}.receipt-bar{height:15px;background-color:#aa1818;width:100%;-webkit-print-color-adjust:exact;print-color-adjust:exact}.receipt-bar.bottom{margin-top:auto}.receipt-content{padding:40px 50px;flex:1 1}.receipt-header{display:flex;justify-content:space-between;margin-bottom:50px}.receipt-title{font-size:32px;color:#777;margin-bottom:20px;letter-spacing:2px;text-transform:uppercase}.company-info p{margin:2px 0;font-size:14px;color:#555}.receipt-logo-section{text-align:right;display:flex;flex-direction:column;align-items:flex-end}.receipt-logo{width:80px;height:80px;background:#eee;border-radius:50%;margin-bottom:15px;overflow:hidden;display:flex;align-items:center;justify-content:center}.receipt-logo img{max-width:100%;max-height:100%}.receipt-meta{text-align:right}.meta-row{margin-bottom:5px}.meta-label{font-size:10px;font-weight:700;color:#777;text-transform:uppercase;display:block;letter-spacing:1px}.meta-value{font-size:14px;font-weight:700;color:#000}.receipt-details{display:flex;justify-content:space-between;margin-bottom:40px;border-bottom:1px solid #ddd;padding-bottom:20px}.detail-column{width:45%}.detail-header{font-size:11px;font-weight:700;color:#777;text-transform:uppercase;margin-bottom:10px;letter-spacing:1px}.detail-value{font-size:15px;font-weight:700;color:#000}.detail-column p{margin:4px 0;font-size:14px}.receipt-table{width:100%;border-collapse:collapse;margin-bottom:30px}.receipt-table th{background-color:#aa1818!important;color:#fff!important;padding:10px 15px;text-align:left;font-size:12px;text-transform:uppercase;-webkit-print-color-adjust:exact;print-color-adjust:exact}.receipt-table td{padding:15px;border-bottom:1px solid #eee;font-size:14px}.receipt-table tr:nth-child(2n){background-color:#f9f9f9!important;-webkit-print-color-adjust:exact;print-color-adjust:exact}.text-right{text-align:right!important}.receipt-totals{width:300px;margin-left:auto;margin-bottom:60px}.total-row{display:flex;justify-content:space-between;padding:5px 0;border-bottom:1px solid #eee}.total-row.large{font-size:18px;font-weight:700;border-bottom:2px solid #000;margin:10px 0}.total-label{color:#555}.total-value{font-weight:600}.receipt-signatures{display:flex;justify-content:space-between;margin-top:50px}.signature-box{width:200px;text-align:center}.signature-line{border-top:1px solid #000;margin-bottom:10px}.signature-box p{font-size:12px;color:#555;text-transform:uppercase;letter-spacing:1px}@page{size:A4;margin:0}}.Sidebar_sidebar__v6daX{width:260px;height:100vh;background:linear-gradient(135deg,#1a1a2e,#16213e);display:flex;flex-direction:column;padding:1rem;position:fixed;left:0;top:0;z-index:100;overflow:hidden}[dir=rtl] .Sidebar_sidebar__v6daX{left:auto;right:0}.Sidebar_logo__SsBgv{display:flex;align-items:center;justify-content:center;padding:.5rem;margin-bottom:1.5rem;flex-shrink:0}.Sidebar_logoImage__xf2tq{width:120px;height:120px;object-fit:contain;border-radius:50%}.Sidebar_nav__KAd3g{display:flex;flex-direction:column;gap:.5rem;flex:1 1;overflow-y:auto;overflow-x:hidden;padding-right:4px}.Sidebar_nav__KAd3g::-webkit-scrollbar{width:4px}.Sidebar_nav__KAd3g::-webkit-scrollbar-track{background:transparent}.Sidebar_nav__KAd3g::-webkit-scrollbar-thumb{background:hsla(0,0%,100%,.2);border-radius:4px}.Sidebar_navItem__5OSJs{display:flex;align-items:center;gap:.75rem;padding:.875rem 1rem;border-radius:12px;color:hsla(0,0%,100%,.7);text-decoration:none;transition:all .2s ease;font-weight:500}.Sidebar_navItem__5OSJs:hover{background:rgba(220,38,38,.15);color:#fff;transform:translateX(4px)}[dir=rtl] .Sidebar_navItem__5OSJs:hover{transform:translateX(-4px)}.Sidebar_navItem__5OSJs.Sidebar_active__jjcnH{background:linear-gradient(135deg,#dc2626,#b91c1c);color:#fff;box-shadow:0 4px 15px rgba(220,38,38,.4)}.Sidebar_navIcon__t_YT4{font-size:1.25rem}.Sidebar_navLabel__hTBCp{font-size:.95rem}.Sidebar_footer__hB5Gl{padding:1rem .5rem 0;border-top:1px solid hsla(0,0%,100%,.1);flex-shrink:0;margin-top:auto}.Sidebar_userInfo__dTvj0{display:flex;flex-direction:column;margin-bottom:.75rem;padding:.5rem}.Sidebar_userName__znu__{color:#fff;font-weight:600;font-size:.9rem}.Sidebar_userRole__Smx9Z{color:hsla(0,0%,100%,.5);font-size:.75rem;text-transform:capitalize}.Sidebar_toggles__KwCMT{display:flex;gap:.5rem;margin-bottom:1rem}.Sidebar_toggleBtn__ks5kU{flex:1 1;padding:.5rem;background:hsla(0,0%,100%,.1);border:1px solid hsla(0,0%,100%,.2);border-radius:8px;color:#fff;cursor:pointer;transition:all .2s ease;font-size:1.2rem;display:flex;align-items:center;justify-content:center}.Sidebar_toggleBtn__ks5kU:hover{background:hsla(0,0%,100%,.2)}.Sidebar_logoutBtn__SrC_p{width:100%;padding:.75rem;background:rgba(239,68,68,.2);border:1px solid rgba(239,68,68,.3);border-radius:10px;color:#fca5a5;font-size:.9rem;font-weight:500;cursor:pointer;transition:all .2s ease}.Sidebar_logoutBtn__SrC_p:hover{background:rgba(239,68,68,.3);color:#fff}@media (max-width:768px){.Sidebar_sidebar__v6daX{width:70px;padding:.75rem .5rem}.Sidebar_logoImage__xf2tq{width:50px;height:50px}.Sidebar_logoutBtn__SrC_p,.Sidebar_navLabel__hTBCp,.Sidebar_userInfo__dTvj0{display:none}.Sidebar_navItem__5OSJs{justify-content:center;padding:.75rem}.Sidebar_navIcon__t_YT4{font-size:1.5rem}.Sidebar_footer__hB5Gl{display:flex;flex-direction:column;align-items:center}}@media (max-width:480px){.Sidebar_sidebar__v6daX{width:60px}.Sidebar_logoImage__xf2tq{width:40px;height:40px}}