/* ../../../../../tmp/tmp-464875-ZANIJ3IzO0An/asforapp_theme_16/asforapp_theme_16/public/scss/asforapp_theme_16.bundle.css */
:root {
  --theme-primary-900: #031A2D;
  --theme-primary-700: #062B47;
  --theme-primary-600: #083458;
  --theme-primary-color: #0A385C;
  --theme-primary-500: #0B4470;
  --theme-primary-300: #135684;
  --theme-primary-200: #3A7AA3;
  --theme-primary-100: #7FB0CD;
  --theme-primary-50: #D7E7F2;
  --theme-secondary-color: #135684;
  --theme-success: #23C16B;
  --theme-error: #F23C3C;
  --theme-warning: #FEC84B;
  --theme-white: #FEFEFE;
  --theme-black: #111111;
  --theme-line: #E3E7EC;
  --theme-field: #DEE0E4;
  --theme-dark-background: #121223;
  --theme-dark-container: #1F2235;
  --theme-gray-10: #F9FAFB;
  --theme-gray-20: #F2F4F7;
  --theme-gray-40: #D0D5DD;
  --theme-gray-60: #9EA6B0;
  --theme-gray-80: #475467;
  --theme-gray-100: #1D2939;
  --theme-disabled: #F5F5F5;
  --theme-font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --theme-font-size: 14px;
  --theme-header-text-color: #FEFEFE;
  --theme-spacing-xs: 4px;
  --theme-spacing-sm: 8px;
  --theme-spacing-md: 12px;
  --theme-spacing-lg: 16px;
  --theme-spacing-xl: 24px;
  --theme-border-radius: 6px;
  --theme-border-radius-lg: 8px;
}
[data-theme=dark] {
  --theme-background: var(--theme-dark-background);
  --theme-container: var(--theme-dark-container);
  --theme-text: var(--theme-white);
  --theme-text-muted: var(--theme-gray-40);
}
[data-theme=light],
:root:not([data-theme]) {
  --theme-background: var(--theme-white);
  --theme-container: var(--theme-gray-10);
  --theme-text: var(--theme-gray-100);
  --theme-text-muted: var(--theme-gray-60);
}
body {
  font-family: var(--theme-font-family);
  font-size: var(--theme-font-size);
  color: var(--theme-text);
  background-color: var(--theme-background);
}
.navbar {
  background-color: var(--theme-primary-color) !important;
  border-bottom: 1px solid var(--theme-primary-700);
}
.navbar .navbar-brand,
.navbar .nav-link,
.navbar .navbar-text {
  color: var(--theme-header-text-color) !important;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  background-color: var(--theme-primary-500) !important;
  color: var(--theme-header-text-color) !important;
  border-radius: var(--theme-border-radius);
}
.asforapp-language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-inline-end: 10px;
}
.asforapp-lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--theme-header-text-color);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.asforapp-lang-trigger:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.asforapp-lang-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 1px;
}
.asforapp-lang-trigger-icon {
  font-size: 13px;
  line-height: 1;
}
.asforapp-lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  padding: 6px;
  border: 1px solid var(--theme-line);
  border-radius: 10px;
  background: var(--theme-white);
  box-shadow: 0 10px 24px rgba(3, 26, 45, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
  z-index: 30;
}
.asforapp-language-switcher.open .asforapp-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.asforapp-lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--theme-text);
  cursor: pointer;
  text-align: left;
}
.asforapp-lang-option:hover {
  background: var(--theme-primary-50);
}
.asforapp-lang-option.active {
  background-color: rgba(10, 56, 92, 0.12);
  color: var(--theme-primary-700);
  font-weight: 600;
}
.asforapp-lang-flag {
  font-size: 14px;
  line-height: 1;
}
.asforapp-lang-label {
  letter-spacing: 0.02em;
}
.asforapp-lang-name {
  font-size: 12px;
  opacity: 0.75;
  margin-inline-start: auto;
}
#navbar-breadcrumbs a {
  color: var(--theme-header-text-color) !important;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
#navbar-breadcrumbs a:hover {
  color: var(--theme-header-text-color) !important;
  opacity: 0.8;
}
#navbar-breadcrumbs a:before {
  color: var(--theme-header-text-color) !important;
  opacity: 0.7;
}
#navbar-breadcrumbs li.disabled a {
  color: var(--theme-header-text-color) !important;
  opacity: 0.9;
}
#navbar-breadcrumbs li:last-child > a {
  color: var(--theme-header-text-color) !important;
  font-weight: 600;
  opacity: 1;
}
.sidebar,
.app-sidebar {
  background-color: var(--theme-gray-10);
  border-right: 1px solid var(--theme-line);
}
.sidebar .sidebar-item.active,
.app-sidebar .sidebar-item.active {
  background-color: var(--theme-primary-color) !important;
  color: var(--theme-header-text-color) !important;
  border-radius: var(--theme-border-radius);
}
.sidebar .sidebar-item:hover,
.app-sidebar .sidebar-item:hover {
  background-color: var(--theme-primary-50);
  border-radius: var(--theme-border-radius);
}
.module-link.active,
.workspace-link.active {
  background-color: var(--theme-primary-color) !important;
  color: var(--theme-header-text-color) !important;
  border-radius: var(--theme-border-radius);
}
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--theme-primary-color) !important;
  border-color: var(--theme-primary-color) !important;
  color: var(--theme-header-text-color) !important;
  border-radius: var(--theme-border-radius);
  padding: var(--theme-spacing-sm) var(--theme-spacing-lg);
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background-color: var(--theme-primary-500) !important;
  border-color: var(--theme-primary-500) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(10, 56, 92, 0.2);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-secondary {
  background-color: var(--theme-gray-20) !important;
  border-color: var(--theme-line) !important;
  color: var(--theme-text) !important;
  border-radius: var(--theme-border-radius);
}
.btn-secondary:hover {
  background-color: var(--theme-gray-40) !important;
  border-color: var(--theme-gray-40) !important;
}
.btn-success {
  background-color: var(--theme-success) !important;
  border-color: var(--theme-success) !important;
  color: var(--theme-white) !important;
  border-radius: var(--theme-border-radius);
}
.btn-danger,
.btn-error {
  background-color: var(--theme-error) !important;
  border-color: var(--theme-error) !important;
  color: var(--theme-white) !important;
  border-radius: var(--theme-border-radius);
}
.btn-warning {
  background-color: var(--theme-warning) !important;
  border-color: var(--theme-warning) !important;
  color: var(--theme-black) !important;
  border-radius: var(--theme-border-radius);
}
.form-control,
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=date],
input[type=time],
select,
textarea {
  border: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-border-radius) !important;
  background-color: var(--theme-white) !important;
  color: var(--theme-text) !important;
  font-family: var(--theme-font-family);
  font-size: var(--theme-font-size);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--theme-primary-color) !important;
  box-shadow: 0 0 0 3px rgba(10, 56, 92, 0.1) !important;
  outline: none;
}
.form-control:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  background-color: var(--theme-disabled) !important;
  cursor: not-allowed;
}
.badge-primary,
.badge-primary[data-label] {
  background-color: var(--theme-primary-color) !important;
  color: var(--theme-header-text-color) !important;
  border-radius: var(--theme-border-radius);
  padding: var(--theme-spacing-xs) var(--theme-spacing-sm);
  font-weight: 500;
}
.badge-success {
  background-color: var(--theme-success) !important;
  color: var(--theme-white) !important;
}
.badge-danger,
.badge-error {
  background-color: var(--theme-error) !important;
  color: var(--theme-white) !important;
}
.badge-warning {
  background-color: var(--theme-warning) !important;
  color: var(--theme-black) !important;
}
.alert-success {
  background-color: rgba(35, 193, 107, 0.1) !important;
  border-color: var(--theme-success) !important;
  color: var(--theme-success) !important;
  border-radius: var(--theme-border-radius-lg);
}
.alert-danger,
.alert-error {
  background-color: rgba(242, 60, 60, 0.1) !important;
  border-color: var(--theme-error) !important;
  color: var(--theme-error) !important;
  border-radius: var(--theme-border-radius-lg);
}
.alert-warning {
  background-color: rgba(254, 200, 75, 0.1) !important;
  border-color: var(--theme-warning) !important;
  color: var(--theme-warning) !important;
  border-radius: var(--theme-border-radius-lg);
}
.card,
.frappe-card {
  border: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-border-radius-lg) !important;
  background-color: var(--theme-white) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
}
.card:hover,
.frappe-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-header {
  background-color: var(--theme-gray-10) !important;
  border-bottom: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-border-radius-lg) var(--theme-border-radius-lg) 0 0 !important;
  padding: var(--theme-spacing-md) var(--theme-spacing-lg) !important;
}
.list-group-item {
  border: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-border-radius) !important;
  padding: var(--theme-spacing-md) !important;
  transition: background-color 0.2s ease;
}
.list-group-item:hover {
  background-color: var(--theme-gray-10) !important;
}
.list-group-item.active {
  background-color: var(--theme-primary-color) !important;
  border-color: var(--theme-primary-color) !important;
  color: var(--theme-header-text-color) !important;
}
.table {
  border-collapse: separate;
  border-spacing: 0;
}
.table thead th {
  background-color: var(--theme-gray-10) !important;
  border-bottom: 2px solid var(--theme-line) !important;
  color: var(--theme-text) !important;
  font-weight: 600;
  padding: var(--theme-spacing-md) !important;
}
.table tbody td {
  border-bottom: 1px solid var(--theme-line) !important;
  padding: var(--theme-spacing-md) !important;
}
.table tbody tr:hover {
  background-color: var(--theme-gray-10) !important;
}
a {
  color: var(--theme-primary-color) !important;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--theme-primary-500) !important;
  text-decoration: underline;
}
.dropdown-menu {
  border: 1px solid var(--theme-line) !important;
  border-radius: var(--theme-border-radius-lg) !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: var(--theme-spacing-sm) !important;
}
.dropdown-item {
  border-radius: var(--theme-border-radius) !important;
  transition: background-color 0.2s ease;
}
.dropdown-item:hover {
  background-color: var(--theme-primary-50) !important;
  color: var(--theme-primary-color) !important;
}
.dropdown-item.active {
  background-color: var(--theme-primary-color) !important;
  color: var(--theme-header-text-color) !important;
}
.modal-content {
  border-radius: var(--theme-border-radius-lg) !important;
  border: 1px solid var(--theme-line) !important;
}
.modal-header {
  border-bottom: 1px solid var(--theme-line) !important;
  background-color: var(--theme-gray-10) !important;
  border-radius: var(--theme-border-radius-lg) var(--theme-border-radius-lg) 0 0 !important;
}
.modal-footer {
  border-top: 1px solid var(--theme-line) !important;
  background-color: var(--theme-gray-10) !important;
  border-radius: 0 0 var(--theme-border-radius-lg) var(--theme-border-radius-lg) !important;
}
[data-theme=dark] .card,
[data-theme=dark] .frappe-card {
  background-color: var(--theme-dark-container) !important;
  border-color: var(--theme-gray-80) !important;
}
[data-theme=dark] .form-control,
[data-theme=dark] input,
[data-theme=dark] select,
[data-theme=dark] textarea {
  background-color: var(--theme-dark-container) !important;
  border-color: var(--theme-gray-80) !important;
  color: var(--theme-white) !important;
}
[data-theme=dark] .sidebar,
[data-theme=dark] .app-sidebar {
  background-color: var(--theme-dark-container) !important;
  border-color: var(--theme-gray-80) !important;
}
[data-theme=dark] .table thead th {
  background-color: var(--theme-dark-container) !important;
  border-color: var(--theme-gray-80) !important;
}
[data-theme=dark] .table tbody tr:hover {
  background-color: var(--theme-dark-container) !important;
}
.theme-rounded {
  border-radius: var(--theme-border-radius) !important;
}
.theme-rounded-lg {
  border-radius: var(--theme-border-radius-lg) !important;
}
.theme-spacing-sm {
  padding: var(--theme-spacing-sm) !important;
}
.theme-spacing-md {
  padding: var(--theme-spacing-md) !important;
}
.theme-spacing-lg {
  padding: var(--theme-spacing-lg) !important;
}
.form-section.card-section,
.form-dashboard-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.section-head,
.section-body {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.std-form-layout .form-section.card-section,
.std-form-layout .form-dashboard-section {
  width: 100% !important;
  max-width: 100% !important;
}
.form-section.card-section .section-body,
.form-dashboard-section .section-body {
  padding-left: var(--padding-md) !important;
  padding-right: var(--padding-md) !important;
}
@media print {
  :root {
    --theme-primary-color: #0A385C;
    --theme-text: #000000;
    --theme-background: #FFFFFF;
  }
}
/*# sourceMappingURL=asforapp_theme_16.bundle.JZV5Z4M5.css.map */
