@charset "UTF-8";
:root {
  /* Light Theme (Default) */
  --primary-color: #173b40;
  --secondary-color: #285d60;
  --background-color: #f4f7f8;
  --surface-color: #ffffff;
  --surface-muted: #e8efed;
  --hover-background: #edf4f1;
  --accent-color: #78951f;
  --accent-soft: #d6e2df;
  --text-color-primary: #162431;
  --text-color-secondary: #71858a;
  --border-color: #d6e2df;
  --shadow-color: rgba(48, 79, 86, 0.12);
  --heading-color: #3a4a45;
  --content-padding: 10px;
  --nav-height: 90vh;
  --header-bg: rgba(255, 255, 255, 0.94);
  --input-bg: #f8fafc;
  --sidebar-bg: linear-gradient(180deg, #173b40 0%, #0d2a2e 100%);
  --date-color: #131111;
}

[data-theme=dark] {
  --primary-color: #376610;
  --secondary-color: #a3c42e;
  --background-color: #0b0f10;
  --surface-color: #151e20;
  --surface-muted: #1c2a2d;
  --hover-background: #233538;
  --accent-color: #d8f071;
  --accent-soft: #0d2d2f;
  --text-color-primary: #e2e8f0;
  --text-color-secondary: #94a3b8;
  --border-color: #2a3a3d;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --heading-color: #ffffff;
  --header-bg: rgba(21, 30, 32, 0.94);
  --input-bg: #1c2a2d;
  --sidebar-bg: linear-gradient(180deg, #0d1315 0%, #050708 100%);
  --date-color: #e2e2e2;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: "Cairo", sans-serif;
  overflow: hidden;
}

/* Professional Scroll Fix for Guest/Landing Page */
html.is-guest, body.is-guest {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  height: auto !important;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
body.is-guest main {
  position: relative !important;
  height: auto !important;
  min-height: 100dvh !important;
  width: 100% !important;
  z-index: 1;
  display: block !important;
  overflow: visible !important;
}
body main {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}
body main .content-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9500;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
body main .content-loader.is-active {
  display: flex;
}
@media (max-width: 576px) {
  body main .content-loader {
    right: 0;
  }
}
body main .content-loader .spinner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
body main .content-loader .spinner-box p {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
  margin: 0;
}
body main .content-loader .spinner-box .circle-border {
  width: 60px;
  height: 60px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(23, 59, 64, 0.1) 33%, var(--accent-color) 100%);
  animation: spin 0.8s linear infinite;
}
body main .content-loader .spinner-box .circle-core {
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  border-radius: 50%;
}
body main header {
  width: 100%;
  min-height: 58px;
  border-bottom: 1px solid var(--border-color);
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px var(--shadow-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  z-index: 3000;
}
body main header #header-rule {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  body main header {
    padding: 8px 15px;
  }
  body main header .user-info {
    display: none !important;
  }
}
body main header #display-menu {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}
body main header #display-menu:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}
body main header #display-menu svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8px;
}
body main header .header-tools {
  display: flex;
  align-items: center;
  gap: 15px;
}
body main header .header-tools .theme-toggle, body main header .header-tools #tools-toggle {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: var(--surface-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
}
body main header .header-tools .theme-toggle:hover, body main header .header-tools #tools-toggle:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}
body main header .header-tools .theme-toggle i, body main header .header-tools #tools-toggle i {
  font-size: 18px;
}
body main header .header-tools .user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
  padding-right: 15px;
  border-right: 1px solid var(--border-color);
}
body main header .header-tools .user-info small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-color-secondary);
}
body main header .header-tools .user-info strong {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 700;
}
body main header {
  /* شريط الأدوات العائم */
}
body main header .tools-panel {
  position: relative;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
body main header .tools-panel.is-visible {
  opacity: 1;
  visibility: visible;
  max-height: 100%;
  transform: translateY(0);
}
body main header .tools-panel .tools-panel-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: auto;
  padding: 5px 0;
}
body main header .tools-panel .tools-panel-inner .tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 10px;
  min-width: 70px;
  border-radius: 12px;
  color: var(--text-color-primary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 300;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
body main header .tools-panel .tools-panel-inner .tool-item:hover {
  background: var(--hover-background);
  color: var(--primary-color);
  transform: translateY(-2px);
}
body main header .tools-panel .tools-panel-inner .tool-item i {
  font-size: 14px;
  margin: 0;
}
body main header .tools-panel .tools-panel-inner .tool-item span {
  white-space: nowrap;
}
body main header .tools-panel .tools-panel-inner .tool-item.highlight {
  color: var(--accent-color);
  background: var(--accent-soft);
}
body main header .tools-panel .tools-panel-inner .tool-item.highlight:hover {
  background: var(--accent-color);
  color: #fff;
}
body main header .tools-panel .tools-panel-inner .tool-divider {
  width: 1px;
  height: 30px;
  background: var(--border-color);
  margin: 0 4px;
}
body main aside.sidebar {
  width: 300px;
  max-height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1100;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background: var(--sidebar-bg);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  direction: rtl;
}
@media (max-width: 576px) {
  body main aside.sidebar {
    width: 85%;
  }
}
body main aside.sidebar.hide-menu {
  transform: translateX(100%);
}
body main aside.sidebar #user {
  padding: 10px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
body main aside.sidebar #user .user-pic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px;
  border: 1px solid rgba(216, 240, 113, 0.3);
  overflow: hidden;
  display: flex;
  flex-shrink: 0;
}
body main aside.sidebar #user .user-pic i {
  margin: auto;
  font-size: 42px;
}
body main aside.sidebar #user .user-pic svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body main aside.sidebar #user p {
  flex: 1;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body main aside.sidebar #user #close-menu {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--accent-soft);
}
body main aside.sidebar #user #close-menu:hover {
  background: #f2b8ac;
  color: #fff;
  transform: rotate(180deg) scale(1.1);
}
body main aside.sidebar nav {
  flex: 1;
  overflow-y: auto;
  padding: 10px 16px;
  scrollbar-width: none;
}
body main aside.sidebar nav::-webkit-scrollbar {
  display: none;
}
body main aside.sidebar nav .main-menu {
  list-style: none;
}
body main aside.sidebar nav .main-menu li {
  margin-bottom: 4px;
}
body main aside.sidebar nav .main-menu li > span, body main aside.sidebar nav .main-menu li > a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: #b9ccca;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  gap: 12px;
}
body main aside.sidebar nav .main-menu li > span i, body main aside.sidebar nav .main-menu li > a i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--accent-color);
  opacity: 0.8;
  transition: all 0.3s;
}
body main aside.sidebar nav .main-menu li > span:hover, body main aside.sidebar nav .main-menu li > a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
body main aside.sidebar nav .main-menu li > span:hover i, body main aside.sidebar nav .main-menu li > a:hover i {
  transform: scale(1.2);
  opacity: 1;
}
body main aside.sidebar nav .main-menu li > span.open, body main aside.sidebar nav .main-menu li > span:active, body main aside.sidebar nav .main-menu li > a.open, body main aside.sidebar nav .main-menu li > a:active {
  background: #7c9704;
  color: var(--accent-soft);
}
body main aside.sidebar nav .main-menu li > span.open i, body main aside.sidebar nav .main-menu li > span:active i, body main aside.sidebar nav .main-menu li > a.open i, body main aside.sidebar nav .main-menu li > a:active i {
  color: var(--accent-soft);
}
body main aside.sidebar nav .main-menu li > span.open i.fa-plus-square:before, body main aside.sidebar nav .main-menu li > span:active i.fa-plus-square:before, body main aside.sidebar nav .main-menu li > a.open i.fa-plus-square:before, body main aside.sidebar nav .main-menu li > a:active i.fa-plus-square:before {
  content: "\f146";
}
body main aside.sidebar nav .main-menu li > span:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: auto;
  font-size: 12px;
  transition: transform 0.3s;
  opacity: 0.5;
}
body main aside.sidebar nav .main-menu li > span.open:after {
  transform: rotate(90deg);
  color: var(--accent-soft);
}
body main aside.sidebar nav .main-menu li .children {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-right: 15px;
  list-style: none;
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  background-color: rgba(255, 255, 255, 0.02);
}
body main aside.sidebar nav .main-menu li .children li {
  margin-top: 2px;
}
body main aside.sidebar nav .main-menu li .children li > span, body main aside.sidebar nav .main-menu li .children li > a {
  font-size: 13px;
  padding: 10px 12px;
  opacity: 0.9;
}
body main aside.sidebar nav .main-menu li .children li > span:hover, body main aside.sidebar nav .main-menu li .children li > a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
}
body main aside.sidebar nav .main-menu li .children li > span.open, body main aside.sidebar nav .main-menu li .children li > a.open {
  background: rgba(255, 255, 255, 0.02);
  border-right: 2px solid var(--accent-soft);
  padding-right: 20px;
  text-overflow: ellipsis;
  border-radius: 0;
}
body main aside.sidebar nav .main-menu li .children li .children {
  padding-right: 12px;
  background-color: rgba(255, 255, 255, 0.02);
}
body main aside.sidebar nav .main-menu li .children li .children li > span, body main aside.sidebar nav .main-menu li .children li .children li > a {
  font-size: 12px;
  opacity: 0.8;
}
body main aside.sidebar nav .main-menu li .children.open-menu {
  max-height: 2000px;
  padding: 5px 0 10px 0;
}
body main aside.sidebar nav .main-menu.account-menu {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body main aside.sidebar nav .main-menu.account-menu .logout-link {
  color: #f2b8ac;
}
body main aside.sidebar nav .main-menu.account-menu .logout-link:hover {
  background: rgba(242, 184, 172, 0.1);
  color: #ffb5a6;
}
body main aside.sidebar nav .main-menu.account-menu .logout-link:before {
  background: #f2b8ac;
}
body main aside.sidebar .copyright {
  padding: 20px;
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
body main aside.sidebar .copyright p {
  margin: 0;
  font-weight: 500;
}
body main #content {
  padding: var(--content-padding);
  height: 100dvh;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding-bottom: 50px;
  transition: padding-bottom 0.3s ease;
  position: relative;
}
body main #content::-webkit-scrollbar {
  width: 8px;
}
body main #content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
body main #content::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: all 0.3s;
}
body main #content::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
  background-clip: content-box;
}
body main #content {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) transparent;
}
@media (max-width: 576px) {
  body main #content {
    padding: 10px;
  }
}
.is-guest body main #content {
  height: auto;
  min-height: 100dvh;
  overflow: visible;
}
body main #content.has-bottom-bar {
  padding-bottom: 120px;
}
body main #content.has-bottom-bar .pagination, body main #content.has-bottom-bar .pagination-bar, body main #content.has-bottom-bar .submit-btn, body main #content.has-bottom-bar input[type=submit], body main #content.has-bottom-bar button[type=submit]:not(.login-form button) {
  display: none !important;
}
body main #content .login-form {
  width: min(100%, 440px);
  padding: 34px;
  margin: 60px auto;
  direction: rtl;
  border: 1px solid rgba(14, 17, 19, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(35, 55, 80, 0.14);
  animation: login-form-in 0.45s ease-out;
}
body main #content .login-form .login-form-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
body main #content .login-form .login-form-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 14px;
  background: var(--primary-color);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
body main #content .login-form .login-form-kicker {
  margin-bottom: 4px;
  color: #49658c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body main #content .login-form h1 {
  margin-bottom: 6px;
  color: #17212b;
  font-size: 26px;
}
body main #content .login-form .login-form-header p:last-child {
  color: #718096;
  font-size: 13px;
}
body main #content .login-form .login-form-fields {
  display: grid;
  gap: 9px;
}
body main #content .login-form label {
  margin-top: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
}
body main #content .login-form input:not([type=hidden]) {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8e0ea;
  border-radius: 9px;
  outline: 0;
  background: #fbfcfe;
  color: #17212b;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
body main #content .login-form input:not([type=hidden]):focus {
  border-color: #49658c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(73, 101, 140, 0.12);
}
body main #content .login-form button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding: 13px 16px;
  border: 0;
  border-radius: 9px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
body main #content .login-form button:hover {
  background: #26333d;
  box-shadow: 0 8px 18px rgba(14, 17, 19, 0.18);
  transform: translateY(-1px);
}
body main #content .login-form button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
@keyframes login-form-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body main #content {
  /* 📝 Global Client Component / Autocomplete Styling */
}
body main #content .clientComponent {
  position: relative;
  display: flex;
  flex-direction: column;
}
body main #content .clientComponent.is-active {
  z-index: 6000;
}
body main #content .clientComponent.is-active .custom-select-dropdown {
  z-index: 6100;
}
body main #content .clientComponent.is-loading::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 19px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-color);
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 10;
  pointer-events: none;
}
body main #content .clientComponent input[type=text] {
  width: 100%;
  z-index: 1;
  padding-left: 40px !important;
}
body main #content .clientComponent .custom-select-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 45px var(--shadow-color);
  max-height: 150px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
  padding: 10px;
  backdrop-filter: blur(10px);
  animation: dropdownFadeIn 0.2s ease-out;
}
body main #content .clientComponent .custom-select-dropdown::-webkit-scrollbar {
  width: 3px;
}
body main #content .clientComponent .custom-select-dropdown::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 10px;
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body main #content .clientComponent .dropdown-item {
  padding: 12px 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  color: var(--text-color-primary);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
}
body main #content .clientComponent .dropdown-item:hover {
  background: var(--hover-background);
  border-color: var(--border-color);
  transform: scale(1.02) translateX(-5px);
  box-shadow: 0 4px 12px var(--shadow-color);
}
body main #content .clientComponent .dropdown-item .item-main-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body main #content .clientComponent .dropdown-item .item-main-info .parent-path {
  font-size: 9px;
  color: var(--text-color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}
body main #content .clientComponent .dropdown-item .item-main-info .item-name {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
body main #content .clientComponent .dropdown-item .item-meta-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
body main #content .clientComponent .dropdown-item .client-code {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  color: var(--primary-color);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
}
body main #content .clientComponent .dropdown-item .client-id {
  color: var(--text-color-secondary);
  font-size: 10px;
  opacity: 0.5;
  font-weight: 600;
}
body main #content .clientComponent .dropdown-item .final-tag {
  font-size: 9px;
  background: #10b981;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}
body main #content .clientComponent .dropdown-item .final-tag i {
  font-size: 10px;
}
body main #content .clientComponent .dropdown-message {
  padding: 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}
body main #content .clientComponent .sub-level-wrapper {
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.02);
  padding: 8px;
  border-radius: 8px;
  border-right: 2px solid var(--accent-color);
}
body main #content .addTransForm {
  max-width: 1200px;
  margin: 20px auto;
  padding: 24px;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow-color);
  direction: rtl;
  border: 1px solid var(--border-color);
}
body main #content .addTransForm h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--surface-muted);
}
body main #content .addTransForm h3 svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-color);
}
body main #content .addTransForm h3 .date-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
}
body main #content .addTransForm h3 .date-input-wrapper input[type=date] {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-color);
  background-color: var(--input-bg);
  border: 1.5px solid var(--border-color);
  border-radius: 9px;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease-in-out;
  appearance: none;
}
body main #content .addTransForm h3 .date-input-wrapper input[type=date]:hover {
  border-color: #063d27;
}
body main #content .addTransForm h3 .date-input-wrapper input[type=date]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(var(--primary-color), 0.15);
}
body main #content .addTransForm h3 .date-input-wrapper input[type=date]::-webkit-datetime-edit {
  display: flex;
  gap: 2px;
}
body main #content .addTransForm h3 .date-input-wrapper input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s;
}
body main #content .addTransForm h3 .date-input-wrapper input[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.1);
}
body main #content .addTransForm .form-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: right;
}
body main #content .addTransForm .form-content .col-lg-4 {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 280px;
}
@media (max-width: 768px) {
  body main #content .addTransForm .form-content .col-lg-4 {
    flex: 1 1 100%;
  }
}
body main #content .addTransForm .form-content .col-lg-12 {
  flex: 0 0 100%;
}
body main #content .addTransForm .form-content label {
  display: block;
  margin-bottom: 8px;
  color: #4a5568;
  font-size: 14px;
  font-weight: 600;
}
body main #content .addTransForm .form-content input:not([type=radio]):not([type=submit]):not([type=button]):not([type=checkbox]) {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  background: var(--input-bg);
  color: var(--text-color-primary);
  font-size: 15px;
  transition: all 0.2s ease;
}
body main #content .addTransForm .form-content input:not([type=radio]):not([type=submit]):not([type=button]):not([type=checkbox]):focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--surface-color);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
body main #content .addTransForm .form-content .radioBox {
  padding: 10px 0;
}
body main #content .addTransForm .form-content .radioBox .radio-options {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
body main #content .addTransForm .form-content .radioBox .radio-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 10px;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  background: var(--surface-color);
  cursor: pointer;
}
body main #content .addTransForm .form-content .radioBox .radio-option input[type=radio] {
  position: absolute;
  opacity: 0;
}
body main #content .addTransForm .form-content .radioBox .radio-option .radio-text {
  font-size: 14px;
  font-weight: 600;
  color: #718096;
}
body main #content .addTransForm .form-content .radioBox .radio-option:has(input:checked) {
  border-color: var(--primary-color);
  background: rgba(23, 59, 64, 0.05);
}
body main #content .addTransForm .form-content .radioBox .radio-option:has(input:checked) .radio-text {
  color: var(--primary-color);
}
body main #content .addTransForm .form-content .radioBox .radio-option:hover:not(:has(input:checked)) {
  border-color: #cbd5e0;
  background: #f7fafc;
}
body main #content .addTransForm .form-content .submit-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
body main #content .addTransForm .form-content .submit-btn:hover {
  background: #234e54;
  transform: translateY(-2px);
}
body main #content .addTransForm .form-content.has-bottom-bar .submit-btn {
  display: none;
}
body main #content {
  /* Journal Entry Form Styles (Original) */
}
body main #content .journal-entry-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}
body main #content .journal-entry-container .form-header-card {
  background: var(--surface-color);
  padding: 10px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
body main #content .journal-entry-container .form-header-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-color);
  font-size: 20px;
}
body main #content .journal-entry-container .form-header-card h3 i {
  color: var(--accent-color);
}
body main #content .journal-entry-container .form-header-card .row {
  display: flex;
  gap: 20px;
  min-width: 60%;
}
body main #content .journal-entry-container .form-header-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color-secondary);
  font-size: 13px;
  font-weight: 700;
}
body main #content .journal-entry-container .form-header-card input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  background: var(--input-bg);
  color: var(--text-color-primary);
  font-size: 15px;
  transition: all 0.2s ease;
}
body main #content .journal-entry-container .form-header-card input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
body main #content .journal-entry-container .form-header-card input[type=date] {
  width: fit-content;
}
body main #content .journal-entry-container .entry-sides-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side {
  flex: 1;
  min-width: 100%;
}
@media (min-width: 1200px) {
  body main #content .journal-entry-container .entry-sides-wrapper .entry-side {
    min-width: 450px;
  }
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side {
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
  display: flex;
  flex-direction: column;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-header {
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-header h4 {
  margin: 0;
  font-size: 16px;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-header .add-row-btn {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--surface-muted);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-header .add-row-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent-color);
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-content, body main #content .journal-entry-container .entry-sides-wrapper .entry-side .rows-container {
  padding: 24px;
  flex: 1;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-content input:not([type=hidden]), body main #content .journal-entry-container .entry-sides-wrapper .entry-side .rows-container input:not([type=hidden]) {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  background: var(--input-bg);
  color: var(--text-color-primary);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-content input:not([type=hidden]):focus, body main #content .journal-entry-container .entry-sides-wrapper .entry-side .rows-container input:not([type=hidden]):focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-content input:not([type=hidden])::placeholder, body main #content .journal-entry-container .entry-sides-wrapper .entry-side .rows-container input:not([type=hidden])::placeholder {
  color: var(--text-color-secondary);
  opacity: 0.5;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-content #debitTotalInput, body main #content .journal-entry-container .entry-sides-wrapper .entry-side .side-content .debit-amount-input, body main #content .journal-entry-container .entry-sides-wrapper .entry-side .rows-container #debitTotalInput, body main #content .journal-entry-container .entry-sides-wrapper .entry-side .rows-container .debit-amount-input {
  font-size: 18px;
  color: var(--primary-color);
  text-align: center;
  font-weight: 700;
}
body main #content .journal-entry-container .entry-sides-wrapper .entry-divider {
  display: grid;
  place-items: center;
  color: var(--border-color);
  font-size: 24px;
}
@media (max-width: 768px) {
  body main #content .journal-entry-container .entry-sides-wrapper .entry-divider {
    width: 100%;
    height: 30px;
    transform: rotate(90deg);
  }
}
body main #content .journal-entry-container .entry-row-item {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--border-color);
  animation: slideIn 0.3s ease-out;
  position: relative;
}
.debit-side body main #content .journal-entry-container .entry-row-item {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
body main #content .journal-entry-container .entry-row-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
body main #content .journal-entry-container .entry-row-item .row-fields {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
body main #content .journal-entry-container .entry-row-item .row-fields .account-field {
  flex: 3;
  position: relative;
}
body main #content .journal-entry-container .entry-row-item .row-fields .amount-field {
  flex: 1.5;
  padding-top: 0;
}
body main #content .journal-entry-container .entry-row-item .row-fields input.credit-amount-input {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  color: #c53030;
  margin: 0;
}
body main #content .journal-entry-container .entry-row-item .row-fields .remove-row-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #2a2424;
  border: 0;
  color: #c53030;
  cursor: pointer;
  transition: all 0.2s;
}
body main #content .journal-entry-container .entry-row-item .row-fields .remove-row-btn:hover {
  background: #c53030;
  color: #fff;
}
body main #content .journal-entry-container .entry-summary-card {
  background: var(--surface-muted);
  padding: 5px 20px;
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}
body main #content .journal-entry-container .entry-summary-card .summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main #content .journal-entry-container .entry-summary-card .summary-item span {
  font-size: 13px;
  color: var(--text-color-secondary);
}
body main #content .journal-entry-container .entry-summary-card .summary-item strong {
  font-size: 24px;
  color: var(--primary-color);
}
body main #content .journal-entry-container .entry-summary-card .summary-status {
  padding: 12px 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
body main #content .journal-entry-container .entry-summary-card .summary-status.unbalanced {
  background: #341616;
  color: #c53030;
  border: 1px solid #33131a;
}
body main #content .journal-entry-container .entry-summary-card .summary-status.balanced {
  background: #0d1810;
  color: #2f855a;
  border: 1px solid #0c1810;
}
body main #content {
  /* 📊 Report Styling (Trial Balance, etc.) */
}
body main #content .report-container {
  padding: 15px;
  animation: fadeIn 0.4s ease-out;
}
body main #content .report-container .report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}
body main #content .report-container .report-header h2 {
  color: var(--primary-color);
  font-size: 22px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
body main #content .report-container .report-header p {
  color: var(--text-color-secondary);
  font-size: 13px;
  margin: 5px 0 0 35px;
}
body main #content .report-container .card {
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 20px;
  margin-bottom: 25px;
}
body main #content .report-container .report-filters .filter-row {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  flex-wrap: wrap;
}
body main #content .report-container .report-filters .filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body main #content .report-container .report-filters .filter-group label {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-color);
}
body main #content .report-container .report-filters .filter-group input[type=date] {
  padding: 5px 15px;
  border-radius: 10px;
  border: 1.5px solid var(--border-color);
  background: var(--input-bg);
  font-weight: 600;
  color: var(--primary-color);
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
body main #content .report-container .report-filters .filter-group input[type=date]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(23, 59, 64, 0.1);
  outline: none;
}
body main #content .report-container .report-filters .filter-group input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
}
body main #content .report-container .report-filters .filter-group input[type=date]::-webkit-calendar-picker-indicator:hover {
  transform: scale(1.1);
  opacity: 1;
}
body main #content .report-container .report-filters .btn-refresh {
  padding: 6px 25px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
body main #content .report-container .report-filters .btn-refresh:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
body main #content .report-container .report-table-wrapper {
  overflow-x: auto;
}
body main #content .report-container .report-table-wrapper .report-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
body main #content .report-container .report-table-wrapper .report-table thead {
  background: var(--surface-muted);
}
body main #content .report-container .report-table-wrapper .report-table thead th {
  padding: 4px 10px;
  font-size: 11px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--border-color);
  font-weight: 800;
}
body main #content .report-container .report-table-wrapper .report-table tbody td {
  padding: 4px 10px;
  font-size: 12px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color-primary);
  text-align: center;
}
body main #content .report-container .report-table-wrapper .report-table tbody tr:hover {
  background: var(--hover-background);
}
body main #content .report-container .report-table-wrapper .report-table tbody .name-cell {
  text-align: right;
  padding-right: 15px;
}
body main #content .report-container .report-table-wrapper .report-table tbody .name-cell .account-name-main {
  font-weight: 700;
  line-height: 1.2;
}
body main #content .report-container .report-table-wrapper .report-table tbody .name-cell .account-note-sub {
  font-size: 10px;
  opacity: 0.5;
  font-weight: 500;
  margin-top: 2px;
  color: var(--text-color-secondary);
}
body main #content .report-container .report-table-wrapper .report-table .total-row {
  background: #1a1c18;
  font-weight: 900;
  text-align: center;
}
body main #content .report-container .report-table-wrapper .report-table .total-row td {
  border: none;
  padding: 6px 10px;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
  color: #f9af04;
}
body main #content .report-container .report-table-wrapper .report-table .total-row #totalDebit,
body main #content .report-container .report-table-wrapper .report-table .total-row #totalCredit,
body main #content .report-container .report-table-wrapper .report-table .total-row #grandBalance,
body main #content .report-container .report-table-wrapper .report-table .total-row #text-center {
  text-align: center;
  color: #f9af04;
}
body main #content .report-container .report-table-wrapper .code-cell {
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
  color: var(--secondary-color);
  font-size: 11px;
}
body main #content .report-container .report-table-wrapper .amount-cell {
  text-align: center;
  font-weight: 400;
  font-family: ِ "Arial", "JetBrains Mono", monospace;
  font-size: 14px;
}
body main #content .report-container .report-table-wrapper .debit {
  color: #087f5b;
}
body main #content .report-container .report-table-wrapper .credit {
  color: #c92a2a;
}
body main #content .report-container .report-table-wrapper .balance {
  color: #f9af04;
}
body main #content .report-container .report-table-wrapper .badge {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
}
body main #content .report-container .report-table-wrapper .badge.debit-status {
  background: rgba(8, 127, 91, 0.1);
  color: #087f5b;
}
body main #content .report-container .report-table-wrapper .badge.credit-status {
  background: rgba(201, 42, 42, 0.1);
  color: #c92a2a;
}
body main #content .report-container .btn-print {
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-weight: 700;
}
body main #content .report-container .btn-print:hover {
  background: var(--accent-soft);
}
body main #content {
  /* 💸 Income Statement Specific Styles */
}
body main #content .income-statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}
@media (max-width: 992px) {
  body main #content .income-statement-grid {
    grid-template-columns: 1fr;
  }
}
body main #content .income-statement-grid .statement-section {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
body main #content .income-statement-grid .statement-section .section-title {
  padding: 15px 20px;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
body main #content .income-statement-grid .statement-section .section-title.success {
  background: #e6fffa;
  color: #087f5b;
  border-bottom: 2px solid #b2f5ea;
}
body main #content .income-statement-grid .statement-section .section-title.danger {
  background: #fff5f5;
  color: #c92a2a;
  border-bottom: 2px solid #feb2b2;
}
body main #content .income-statement-grid .statement-section .section-table {
  flex: 1;
  padding: 10px;
  min-height: 150px;
}
body main #content .income-statement-grid .statement-section .section-table table {
  width: 100%;
  border-collapse: collapse;
}
body main #content .income-statement-grid .statement-section .section-table table th {
  text-align: right;
  font-size: 11px;
  color: var(--text-color-secondary);
  padding: 8px;
  border-bottom: 1px solid var(--border-color);
}
body main #content .income-statement-grid .statement-section .section-table table td {
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px dashed var(--border-color);
}
body main #content .income-statement-grid .statement-section .section-footer {
  padding: 15px 20px;
  background: var(--surface-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body main #content .income-statement-grid .statement-section .section-footer span {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.7;
}
body main #content .income-statement-grid .statement-section .section-footer strong {
  font-size: 18px;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}
body main #content .net-profit-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  transition: all 0.3s ease;
  border-width: 2px;
}
body main #content .net-profit-card.profit {
  background: linear-gradient(135deg, #087f5b 0%, #055a40 100%);
  color: #fff;
  border-color: #087f5b;
  box-shadow: 0 10px 30px rgba(8, 127, 91, 0.3);
}
body main #content .net-profit-card.loss {
  background: linear-gradient(135deg, #c92a2a 0%, #961e1e 100%);
  color: #fff;
  border-color: #c92a2a;
  box-shadow: 0 10px 30px rgba(201, 42, 42, 0.3);
}
body main #content .net-profit-card .profit-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
  font-weight: 800;
}
body main #content .net-profit-card .profit-info p {
  font-size: 13px;
  opacity: 0.8;
}
body main #content .net-profit-card .profit-amount {
  text-align: left;
}
body main #content .net-profit-card .profit-amount span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 5px;
}
body main #content .net-profit-card .profit-amount strong {
  font-size: 32px;
  font-weight: 900;
  font-family: "JetBrains Mono", monospace;
}
body main #content {
  /* 🌊 Cash Flow Specific Styles */
}
body main #content .cash-flow-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  body main #content .cash-flow-summary-grid {
    grid-template-columns: 1fr;
  }
}
body main #content .cash-flow-summary-grid .summary-card {
  background: var(--surface-color);
  border-radius: 14px;
  border: 1px solid var(--border-color);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px var(--shadow-color);
  border-bottom-width: 4px;
}
body main #content .cash-flow-summary-grid .summary-card .icon {
  font-size: 28px;
  opacity: 0.8;
}
body main #content .cash-flow-summary-grid .summary-card .details {
  display: flex;
  flex-direction: column;
}
body main #content .cash-flow-summary-grid .summary-card .details span {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-color-secondary);
}
body main #content .cash-flow-summary-grid .summary-card .details strong {
  font-size: 20px;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}
body main #content .cash-flow-summary-grid .summary-card.inflow {
  border-bottom-color: #087f5b;
}
body main #content .cash-flow-summary-grid .summary-card.inflow .icon {
  color: #087f5b;
}
body main #content .cash-flow-summary-grid .summary-card.outflow {
  border-bottom-color: #c92a2a;
}
body main #content .cash-flow-summary-grid .summary-card.outflow .icon {
  color: #c92a2a;
}
body main #content .cash-flow-summary-grid .summary-card.net {
  border-bottom-color: var(--primary-color);
}
body main #content .cash-flow-summary-grid .summary-card.net .icon {
  color: var(--primary-color);
}
body main #content .type-badge {
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  background: var(--surface-muted);
  color: var(--text-color-secondary);
}
body main #content {
  /* 🏦 Balance Sheet Specific Styles */
}
body main #content .balance-sheet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  body main #content .balance-sheet-grid {
    grid-template-columns: 1fr;
  }
}
body main #content .balance-sheet-grid .bs-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body main #content .balance-sheet-grid .bs-side {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
body main #content .balance-sheet-grid .bs-side .side-header {
  padding: 12px 20px;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body main #content .balance-sheet-grid .bs-side .side-header.assets {
  background: #e6fffa;
  color: #087f5b;
  border-bottom: 2px solid #b2f5ea;
}
body main #content .balance-sheet-grid .bs-side .side-header.liabilities {
  background: #fff5f5;
  color: #c92a2a;
  border-bottom: 2px solid #feb2b2;
}
body main #content .balance-sheet-grid .bs-side .side-header.equity {
  background: #ebf8ff;
  color: var(--primary-color);
  border-bottom: 2px solid #bee3f8;
}
body main #content .balance-sheet-grid .bs-side .side-content {
  flex: 1;
  padding: 10px;
  min-height: 100px;
}
body main #content .balance-sheet-grid .bs-side .side-content table {
  width: 100%;
  border-collapse: collapse;
}
body main #content .balance-sheet-grid .bs-side .side-content table td {
  padding: 8px;
  border-bottom: 1px dashed var(--border-color);
  font-size: 12.5px;
}
body main #content .balance-sheet-grid .bs-side .side-content table .acc-name {
  font-weight: 700;
  color: var(--text-color-primary);
}
body main #content .balance-sheet-grid .bs-side .side-content table .acc-code {
  font-size: 10px;
  opacity: 0.5;
  font-family: monospace;
}
body main #content .balance-sheet-grid .bs-side .side-footer {
  padding: 12px 20px;
  background: var(--surface-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body main #content .balance-sheet-grid .bs-side .side-footer span {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.8;
}
body main #content .balance-sheet-grid .bs-side .side-footer strong {
  font-size: 18px;
  font-weight: 800;
  font-family: "JetBrains Mono", monospace;
}
body main #content .balance-sheet-grid .total-combined-card {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(23, 59, 64, 0.2);
}
body main #content .balance-sheet-grid .total-combined-card span {
  font-size: 14px;
  font-weight: 700;
}
body main #content .balance-sheet-grid .total-combined-card strong {
  font-size: 22px;
  font-weight: 900;
  font-family: "JetBrains Mono", monospace;
}
body main #content .balance-indicator-bar {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 14px;
}
body main #content .balance-indicator-bar.balanced {
  border-right: 5px solid #087f5b;
  color: #087f5b;
  background: #e6fffa;
}
body main #content .balance-indicator-bar.unbalanced {
  border-right: 5px solid #c92a2a;
  color: #c92a2a;
  background: #fff5f5;
}
body main #content {
  /* Quick Add Styles */
}
body main #content .quick-add-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}
body main #content .quick-add-container .quick-add-card {
  background: var(--surface-color);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 50px var(--shadow-color);
  overflow: hidden;
}
body main #content .quick-add-container .quick-add-card .card-header-main {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d2a2e 100%);
  padding: 40px 30px;
  text-align: center;
  color: #fff;
}
body main #content .quick-add-container .quick-add-card .card-header-main h3 {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
body main #content .quick-add-container .quick-add-card .card-header-main h3 i {
  color: var(--accent-color);
}
body main #content .quick-add-container .quick-add-card .card-header-main p {
  opacity: 0.8;
  font-size: 14px;
}
body main #content .quick-add-container .quick-add-card .selection-wrapper {
  padding: 30px;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border-color);
}
body main #content .quick-add-container .quick-add-card .selection-wrapper .custom-select-wrapper {
  max-width: 500px;
  margin: 0 auto;
}
body main #content .quick-add-container .quick-add-card .selection-wrapper .custom-select-wrapper label {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 15px;
}
body main #content .quick-add-container .quick-add-card .selection-wrapper .custom-select-wrapper .professional-select {
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  background: var(--surface-color);
  color: var(--text-color-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23173b40' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 18px;
}
body main #content .quick-add-container .quick-add-card .selection-wrapper .custom-select-wrapper .professional-select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper {
  padding: 40px;
  min-height: 300px;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .placeholder-content {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-color-secondary);
  gap: 20px;
  opacity: 0.5;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .placeholder-content i {
  font-size: 40px;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .placeholder-content p {
  font-weight: 600;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .dynamic-add-form {
  animation: fadeIn 0.5s ease-out;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .dynamic-add-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .dynamic-add-form .form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text-color-secondary);
  font-size: 13px;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .dynamic-add-form .form-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--border-color);
  background: var(--input-bg);
  color: var(--text-color-primary);
  font-size: 15px;
  transition: all 0.2s;
}
body main #content .quick-add-container .quick-add-card .dynamic-form-wrapper .dynamic-add-form .form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--surface-color);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
body main .bottom-bar {
  position: fixed;
  bottom: -100px;
  left: 5%;
  right: 5%;
  padding: 10px 20px;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-color);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  direction: rtl;
}
@media (max-width: 768px) {
  body main .bottom-bar {
    left: 10px;
    right: 10px;
    padding: 0 15px;
    height: 60px;
  }
}
body main .bottom-bar.is-visible {
  bottom: 5px;
}
@media (max-width: 768px) {
  body main .bottom-bar.is-visible {
    bottom: 5px;
  }
}
body main .bottom-bar .bottom-bar-content {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
body main .bottom-bar .bottom-bar-content .global-footer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
body main .bottom-bar .bottom-bar-content .global-footer-info .copyright {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-color-secondary);
}
body main .bottom-bar .bottom-bar-content .global-footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
body main .bottom-bar .bottom-bar-content .global-footer-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s;
}
body main .bottom-bar .bottom-bar-content .global-footer-links a:hover {
  color: var(--accent-color);
}
body main .bottom-bar .bottom-bar-content .global-footer-links a.support-link {
  color: #25d366;
}
body main .bottom-bar .bottom-bar-content .global-footer-links a.support-link i {
  font-size: 16px;
}
@media (max-width: 768px) {
  body main .bottom-bar .bottom-bar-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  body main .bottom-bar .bottom-bar-content .global-footer-info .copyright {
    font-size: 10px;
  }
  body main .bottom-bar .bottom-bar-content .global-footer-links {
    gap: 10px;
  }
  body main .bottom-bar .bottom-bar-content .global-footer-links a {
    font-size: 11px;
  }
}
body main .bottom-bar .pagination, body main .bottom-bar .pagination-bar {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body main .bottom-bar .pagination a, body main .bottom-bar .pagination span, body main .bottom-bar .pagination-bar a, body main .bottom-bar .pagination-bar span {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--surface-muted);
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
body main .bottom-bar .pagination a:hover, body main .bottom-bar .pagination span:hover, body main .bottom-bar .pagination-bar a:hover, body main .bottom-bar .pagination-bar span:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}
body main .bottom-bar .pagination a.active, body main .bottom-bar .pagination a.current, body main .bottom-bar .pagination span.active, body main .bottom-bar .pagination span.current, body main .bottom-bar .pagination-bar a.active, body main .bottom-bar .pagination-bar a.current, body main .bottom-bar .pagination-bar span.active, body main .bottom-bar .pagination-bar span.current {
  background: var(--primary-color);
  color: #fff;
}
body main .bottom-bar .submit-btn, body main .bottom-bar button[type=submit], body main .bottom-bar input[type=submit] {
  margin: 0 !important;
  width: auto !important;
  min-width: 240px;
  padding: 14px 40px !important;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(23, 59, 64, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body main .bottom-bar .submit-btn:hover, body main .bottom-bar button[type=submit]:hover, body main .bottom-bar input[type=submit]:hover {
  background: var(--secondary-color);
  transform: translateY(-3px) scale(1.02);
}
body main .bottom-bar .submit-btn:disabled, body main .bottom-bar button[type=submit]:disabled, body main .bottom-bar input[type=submit]:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
}
body main .bottom-bar .submit-btn::before, body main .bottom-bar button[type=submit]::before, body main .bottom-bar input[type=submit]::before {
  content: "✓";
  font-size: 18px;
}
body main .toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(90%, 400px);
  pointer-events: none;
}
body main .toast-container .toast {
  pointer-events: auto;
  background: var(--surface-color);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 12px 32px var(--shadow-color);
  display: flex;
  align-items: center;
  gap: 12px;
  direction: rtl;
  animation: toast-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  border: 1px solid var(--border-color);
}
body main .toast-container .toast.is-loading {
  border-right: 4px solid var(--primary-color);
}
body main .toast-container .toast.is-success {
  border-right: 4px solid #087f5b;
}
body main .toast-container .toast.is-success .toast-icon::before {
  content: "✓";
  color: #087f5b;
}
body main .toast-container .toast.is-error {
  border-right: 4px solid #c92a2a;
}
body main .toast-container .toast.is-error .toast-icon::before {
  content: "✕";
  color: #c92a2a;
}
body main .toast-container .toast .toast-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  font-weight: 900;
}
body main .toast-container .toast .toast-text {
  color: var(--text-color-primary);
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}
body main .toast-container .toast.hiding {
  animation: toast-out 0.3s ease forwards;
}
body main .app-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 18px 28px;
  border-top: 1px solid var(--border-color);
  background: var(--surface-color);
  color: var(--text-color-secondary);
  direction: rtl;
  font-size: 11px;
}
body main .app-footer .app-footer-brand {
  gap: 10px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}
body main .app-footer .app-footer-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--primary-color);
  color: var(--accent-soft);
  font-size: 16px;
  font-weight: 800;
}
body main .app-footer .app-footer-brand strong {
  display: block;
  font-size: 13px;
}
body main .app-footer .app-footer-brand div span {
  margin-top: 2px;
  color: var(--text-color-secondary);
  font-size: 10px;
}
body main .app-footer .app-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
body main .app-footer .app-footer-links a {
  color: var(--text-color-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
body main .app-footer .app-footer-links a:hover {
  color: var(--accent-color);
}
body main .app-footer .app-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px 14px;
  text-align: left;
}
body main .app-footer .app-footer-meta strong {
  color: var(--primary-color);
  font-weight: 800;
}
body main .transport-home {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  padding: 40px clamp(20px, 5vw, 80px);
  color: var(--text-color-primary);
  background: radial-gradient(circle at 0% 0%, var(--surface-muted) 0%, transparent 50%), radial-gradient(circle at 100% 100%, var(--accent-soft) 0%, transparent 50%), var(--background-color);
  display: flex;
  flex-direction: column;
  gap: 60px;
  isolation: isolate;
}
body main .transport-home .transport-home-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.3;
}
body main .transport-home .transport-home-orbit-one {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: rotateOrbit 60s linear infinite;
}
body main .transport-home .transport-home-orbit-two {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -50px;
  animation: rotateOrbit 40s linear infinite reverse;
}
@keyframes rotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
body main .transport-home .transport-home-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
body main .transport-home .transport-home-topbar .transport-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}
body main .transport-home .transport-home-topbar .transport-brand .transport-brand-mark {
  width: 48px;
  height: 48px;
  background: #fff;
  display: grid;
  place-items: center;
  border-radius: 14px;
  box-shadow: 0 8px 20px var(--shadow-color);
}
body main .transport-home .transport-home-topbar .transport-brand .transport-brand-mark svg {
  width: 50px;
  height: 50px;
}
body main .transport-home .transport-home-topbar .transport-brand strong {
  display: block;
  font-size: 20px;
  color: var(--primary-color);
}
body main .transport-home .transport-home-topbar .transport-brand small {
  font-size: 11px;
  color: var(--text-color-secondary);
  font-weight: 600;
}
body main .transport-home .transport-home-topbar .transport-home-status {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-color-secondary);
  background: var(--surface-color);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
body main .transport-home .transport-home-topbar .transport-home-status i {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseLive 2s infinite;
}
body main .transport-home .transport-home-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  body main .transport-home .transport-home-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-eyebrow {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-welcome {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color-secondary);
  margin-bottom: 10px;
}
body main .transport-home .transport-home-grid .transport-home-copy h1 {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1.15;
  color: var(--primary-color);
  font-weight: 900;
  margin-bottom: 30px;
}
body main .transport-home .transport-home-grid .transport-home-copy h1 em {
  font-style: normal;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}
body main .transport-home .transport-home-grid .transport-home-copy h1 em::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--accent-soft);
  z-index: -1;
  opacity: 0.5;
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-home-intro {
  font-size: 18px;
  color: var(--text-color-secondary);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  body main .transport-home .transport-home-grid .transport-home-copy .transport-home-intro {
    margin: 0 auto 40px;
  }
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-home-actions {
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  body main .transport-home .transport-home-grid .transport-home-copy .transport-home-actions {
    justify-content: center;
  }
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-home-actions .transport-primary-action {
  background: var(--primary-color);
  color: #fff;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-home-actions .transport-primary-action:hover {
  transform: translateY(-5px);
  background: var(--secondary-color);
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-home-actions .transport-secondary-action {
  padding: 16px 24px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--border-color);
  border-radius: 14px;
}
body main .transport-home .transport-home-grid .transport-home-copy .transport-home-actions .transport-secondary-action:hover {
  background: var(--surface-muted);
}
body main .transport-home .transport-home-grid .accounting-visual-card {
  background: var(--surface-color);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 30px 70px var(--shadow-color);
  padding: 25px;
  direction: rtl;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
body main .transport-home .transport-home-grid .accounting-visual-card:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}
@media (max-width: 992px) {
  body main .transport-home .transport-home-grid .accounting-visual-card {
    transform: none;
    margin: 0 auto;
    max-width: 500px;
  }
}
body main .transport-home .transport-home-grid .accounting-visual-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface-muted);
}
body main .transport-home .transport-home-grid .accounting-visual-card .card-header .title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--primary-color);
}
body main .transport-home .transport-home-grid .accounting-visual-card .card-header .live-pulse {
  font-size: 10px;
  font-weight: 800;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}
body main .transport-home .transport-home-grid .accounting-visual-card .card-header .live-pulse i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  animation: pulseLive 2.5s infinite;
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper {
  background: var(--input-bg);
  border-radius: 16px;
  padding: 10px;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper .professional-chart {
  width: 100%;
  height: auto;
  display: block;
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper .professional-chart .grid-line {
  stroke: var(--border-color);
  stroke-width: 0.5;
  stroke-dasharray: 4;
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper .professional-chart .chart-area.income {
  fill: rgba(16, 185, 129, 0.1);
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper .professional-chart .chart-line {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper .professional-chart .chart-line.income {
  stroke: #10b981;
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper .professional-chart .chart-line.expense {
  stroke: var(--primary-color);
  opacity: 0.6;
  stroke-dasharray: 5;
}
body main .transport-home .transport-home-grid .accounting-visual-card .main-chart-wrapper .professional-chart .scanner-line {
  stroke: var(--accent-color);
  stroke-width: 1;
  opacity: 0.4;
  animation: scanChart 6s linear infinite;
}
@keyframes scanChart {
  0% {
    x1: 0;
    x2: 0;
  }
  100% {
    x1: 400;
    x2: 400;
  }
}
body main .transport-home .transport-home-grid .accounting-visual-card .visual-status-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
body main .transport-home .transport-home-grid .accounting-visual-card .visual-status-row .status-spark {
  padding: 10px;
  background: var(--surface-muted);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body main .transport-home .transport-home-grid .accounting-visual-card .visual-status-row .status-spark .spark-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-color-secondary);
}
body main .transport-home .transport-home-grid .accounting-visual-card .visual-status-row .status-spark .sparkline {
  width: 100%;
  height: 30px;
}
body main .transport-home .transport-home-grid .accounting-visual-card .ticker-footer {
  background: var(--primary-color);
  margin: 0 -25px -25px;
  padding: 10px 0;
  overflow: hidden;
}
body main .transport-home .transport-home-grid .accounting-visual-card .ticker-footer .ticker-content {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: tickerMove 20s linear infinite;
}
body main .transport-home .transport-home-grid .accounting-visual-card .ticker-footer .ticker-content span {
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  font-family: monospace;
}
@keyframes tickerMove {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
body main .transport-home .accounting-features-container {
  max-width: 1300px;
  width: 100%;
  margin: 40px auto 0;
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
}
body main .transport-home .accounting-features-container .section-title {
  text-align: center;
  margin-bottom: 50px;
}
body main .transport-home .accounting-features-container .section-title h2 {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 900;
}
body main .transport-home .accounting-features-container .section-title p {
  color: var(--text-color-secondary);
  font-size: 16px;
}
body main .transport-home .accounting-features-container .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
body main .transport-home .accounting-features-container .features-grid .feature-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body main .transport-home .accounting-features-container .features-grid .feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
}
body main .transport-home .accounting-features-container .features-grid .feature-card .icon-box {
  width: 50px;
  height: 50px;
  background: var(--input-bg);
  color: var(--primary-color);
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-size: 20px;
}
body main .transport-home .accounting-features-container .features-grid .feature-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-color);
}
body main .transport-home .accounting-features-container .features-grid .feature-card p {
  font-size: 14px;
  color: var(--text-color-secondary);
  line-height: 1.7;
}

::selection {
  background-color: #000;
  border: 1px solid #a3c5eb;
  color: #fff;
}

.open-menu {
  max-height: 200px;
}

.hide-menu {
  transform: translateX(100%);
}

/* 🖨️ نظام الطباعة الاحترافي */
@media print {
  header, aside.sidebar, .bottom-bar, .tools-panel, .toast-container, .app-footer, #display-menu, .header-tools {
    display: none !important;
  }
  body, html {
    background: #fff !important;
    height: auto !important;
    width: 100% !important;
    overflow: visible !important;
  }
  main {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
  }
  #content {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  #content::-webkit-scrollbar {
    display: none;
  }
  .no-print {
    display: none !important;
  }
  .addTransForm, .journal-entry-container, .quick-add-card, .form-header-card, .entry-side {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
    margin-bottom: 20px !important;
    background: #fff !important;
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@media screen and (min-width: 601px) {
  .col-lg-1 {
    width: 8.3333333333%;
    float: right;
  }
  .col-lg-2 {
    width: 16.6666666667%;
    float: right;
  }
  .col-lg-3 {
    width: 25%;
    float: right;
  }
  .col-lg-4 {
    width: 33.3333333333%;
    float: right;
  }
  .col-lg-5 {
    width: 41.6666666667%;
    float: right;
  }
  .col-lg-6 {
    width: 50%;
    float: right;
  }
  .col-lg-7 {
    width: 58.3333333333%;
    float: right;
  }
  .col-lg-8 {
    width: 66.6666666667%;
    float: right;
  }
  .col-lg-9 {
    width: 75%;
    float: right;
  }
  .col-lg-10 {
    width: 83.3333333333%;
    float: right;
  }
  .col-lg-11 {
    width: 91.6666666667%;
    float: right;
  }
  .col-lg-12 {
    width: 100%;
    float: right;
  }
  body main aside.sidebar {
    width: 300px;
  }
  body main #content {
    padding-right: 24px;
    padding-left: 24px;
  }
  body main .transport-home .transport-home-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  }
}
@media screen and (max-width: 600px) {
  .col-xs-1 {
    width: 8.3333333333%;
    float: right;
  }
  .col-xs-2 {
    width: 16.6666666667%;
    float: right;
  }
  .col-xs-3 {
    width: 25%;
    float: right;
  }
  .col-xs-4 {
    width: 33.3333333333%;
    float: right;
  }
  .col-xs-5 {
    width: 41.6666666667%;
    float: right;
  }
  .col-xs-6 {
    width: 50%;
    float: right;
  }
  .col-xs-7 {
    width: 58.3333333333%;
    float: right;
  }
  .col-xs-8 {
    width: 66.6666666667%;
    float: right;
  }
  .col-xs-9 {
    width: 75%;
    float: right;
  }
  .col-xs-10 {
    width: 83.3333333333%;
    float: right;
  }
  .col-xs-11 {
    width: 91.6666666667%;
    float: right;
  }
  .col-xs-12 {
    width: 100%;
    float: right;
  }
  body main header {
    min-height: 52px;
    padding: 7px 14px;
  }
  body main aside.sidebar {
    width: min(86vw, 300px);
  }
  body main #content {
    padding: 8px;
  }
  body main .login-form {
    padding: 26px 20px;
    border-radius: 14px;
  }
  body main .transport-home {
    padding: 50px 18px 34px;
  }
  body main .transport-home .transport-home-status {
    display: none;
  }
  body main .transport-home .transport-home-grid {
    display: block;
    min-height: auto;
    margin-top: 52px;
  }
  body main .transport-home h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
  body main .transport-home .transport-home-intro {
    font-size: 14px;
  }
  body main .transport-home .transport-command-panel {
    max-width: none;
    margin: 54px 0 36px;
    transform: rotate(0);
  }
  body main .transport-home .transport-capabilities {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  body main .transport-home .transport-capabilities article {
    padding: 0 18px 0 0;
    border-left: 0;
    border-right: 1px solid #c4d2cf;
  }
  body main .app-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 20px 16px;
  }
  body main #content {
    padding-bottom: 150px;
  }
  body main .app-footer .app-footer-links {
    justify-content: flex-start;
    gap: 12px 16px;
  }
  body main .app-footer .app-footer-meta {
    justify-content: flex-start;
    text-align: right;
  }
}

/*# sourceMappingURL=general.css.map */
