/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
@layer properties;
.visible {
  visibility: visible;
}
.static {
  position: static;
}
.block {
  display: block;
}
.transform {
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.ring {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
@import url('https://fonts.googleapis.com/css2?family=Carter+One&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');
:root {
  --sidebar-w: 260px;
  --topbar-h: 64px;
  --accent: #eb9400;
  --accent-dark: #cd7f00;
  --accent-glow: rgba(235,148,0,.24);
  --brand-blue: #618db8;
  --brand-navy: #15365a;
  --sidebar-bg: #08121f;
  --sidebar-border: rgba(255,255,255,.04);
  --sidebar-text: #94a3b8;
  --sidebar-text-active: #ffffff;
  --sidebar-hover: rgba(255,255,255,.03);
  --sidebar-active-bg: rgba(235,148,0,.10);
  --sidebar-user-bg: rgba(255,255,255,.04);
  --content-bg: #0a1626;
  --surface: rgba(16, 33, 54, 0.6);
  --text-primary: #f8fafc;
  --text-muted: #94a3b8;
  --topbar-bg: rgba(10, 22, 38, 0.65);
  --topbar-border: rgba(255, 255, 255, 0.05);
  --topbar-action-hover: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.60);
}
.theme-light {
  --sidebar-bg: #f8fafc;
  --sidebar-border: rgba(21, 54, 90, 0.07);
  --sidebar-text: #64748b;
  --sidebar-text-active: #15365a;
  --sidebar-hover: rgba(21, 54, 90, 0.03);
  --sidebar-active-bg: rgba(235, 148, 0, 0.10);
  --sidebar-user-bg: rgba(21, 54, 90, 0.04);
  --content-bg: #eef4f9;
  --surface: rgba(248, 250, 252, 0.88);
  --text-primary: #15365a;
  --text-muted: #64748b;
  --topbar-bg: rgba(248, 250, 252, 0.88);
  --topbar-border: rgba(21, 54, 90, 0.07);
  --topbar-action-hover: rgba(21, 54, 90, 0.05);
  --shadow-sm: 0 4px 12px rgba(21,54,90,.05);
  --shadow-md: 0 8px 32px rgba(21,54,90,.08);
  --shadow-lg: 0 20px 60px rgba(21,54,90,.10);
}
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-size: 17px;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--content-bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}
@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-content {
  animation: pageIn .3s ease-out;
}
.shell {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: var(--sidebar-w);
  background: var(--sidebar-bg);
  border-right: 1px solid var(--sidebar-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 200;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.sidebar.collapsed {
  transform: translateX(-100%);
}
.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: radial-gradient(ellipse 80% 120% at 50% -20%, rgba(235,148,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--sidebar-border);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.sidebar-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), #f6a71f);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
  flex-shrink: 0;
}
.sidebar-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--sidebar-text-active);
  letter-spacing: -.3px;
}
.sidebar-logo-sub {
  font-family: 'Carter One', 'Nunito', system-ui, sans-serif;
  font-size: 11px;
  color: var(--sidebar-text);
  margin-top: 1px;
  letter-spacing: .4px;
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  margin: 12px 12px 4px;
  background: var(--sidebar-user-bg);
  border: 1px solid var(--sidebar-border);
  border-radius: var(--radius-sm);
  cursor: default;
  flex-shrink: 0;
}
.sidebar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #f6a71f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sidebar-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--sidebar-text-active);
  line-height: 1.2;
}
.sidebar-user-role {
  font-size: 11px;
  color: var(--sidebar-text);
  margin-top: 1px;
}
.nav-item--admin-exit {
  color: #f87171 !important;
}
.nav-item--admin-exit:hover {
  background: rgba(239,68,68,.08) !important;
  color: #ef4444 !important;
}
.nav-item--admin-exit .nav-icon {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.sidebar-tenant {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 28px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.2px;
  opacity: 0.85;
}
.sidebar-tenant span.material-symbols-outlined {
  font-size: 13px;
  opacity: 0.7;
}
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.1) transparent;
  -webkit-overflow-scrolling: touch;
}
.nav-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(148,163,184,.5);
  padding: 16px 8px 6px;
  display: block;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--sidebar-text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
  position: relative;
  margin-bottom: 2px;
  user-select: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.nav-item:hover {
  background: var(--sidebar-hover);
  color: var(--sidebar-text-active);
}
.nav-item.active {
  background: var(--sidebar-active-bg);
  color: var(--accent);
  font-weight: 600;
  box-shadow: inset 0 0 12px rgba(235, 148, 0, 0.08);
  border: 1px solid rgba(235, 148, 0, 0.15);
}
.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 8px var(--accent);
}
.nav-icon {
  font-size: 18px;
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  width: 20px;
  flex-shrink: 0;
  transition: font-variation-settings .15s;
}
.nav-item.active .nav-icon {
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 20;
}
.sidebar-footer {
  padding: 8px 12px 16px;
  border-top: 1px solid var(--sidebar-border);
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.sidebar-divider {
  height: 1px;
  background: var(--sidebar-border);
  margin: 6px 0;
}
.sidebar-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 4px 12px 2px;
}
.sidebar-legal a {
  font-size: 11px;
  color: var(--sidebar-muted, #94a3b8);
  text-decoration: none;
  opacity: 0.8;
}
.sidebar-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}
.lang-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--sidebar-text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s;
  position: relative;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.lang-picker:hover {
  background: var(--sidebar-hover);
  color: var(--sidebar-text-active);
}
.lang-flag {
  font-size: 16px;
}
.lang-label {
  flex: 1;
}
.lang-caret {
  font-family: 'Material Symbols Rounded';
  font-size: 16px;
  transition: transform .2s;
}
.lang-picker.open .lang-caret {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #16283f;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.lang-picker.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 13px;
  color: var(--sidebar-text);
  cursor: pointer;
  transition: background .12s, color .12s;
}
.lang-option:hover {
  background: rgba(255,255,255,.06);
  color: var(--sidebar-text-active);
}
.lang-option.selected {
  color: var(--accent);
}
.topbar {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  background: var(--topbar-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--topbar-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.topbar-title {
  font-family: 'Carter One', 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: .2px;
  flex: 1;
}
.topbar-action {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all .15s;
  background: none;
  color: var(--text-muted);
}
.topbar-action:hover {
  background: var(--topbar-action-hover);
  color: var(--text-primary);
}
.topbar-action.danger {
  color: #ef4444;
  border: 1.5px solid rgba(239, 68, 68, 0.2);
}
.topbar-action.danger:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: #ef4444;
}
.topbar-icon {
  font-family: 'Material Symbols Rounded';
  font-size: 20px;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined, .material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}
.stat-icon-mini {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon-mini span {
  font-size: 18px;
}
.stat-icon-mini.emerald {
  background: #ecfdf5;
  color: #10b981;
}
.stat-icon-mini.amber {
  background: #fffbeb;
  color: #f59e0b;
}
.stat-icon-mini.orange {
  background: #fff8eb;
  color: #eb9400;
}
.stat-icon-mini.blue {
  background: #f0f6fb;
  color: #618db8;
}
.stat-icon-mini.purple {
  background: #f5f3ff;
  color: #8b5cf6;
}
.main-shell {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left .3s cubic-bezier(.22,1,.36,1);
  overflow-x: hidden;
}
.main-shell.sidebar-collapsed {
  margin-left: 0;
}
.main-content {
  flex: 1;
  padding: 28px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
.hamburger {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  background: none;
  transition: background .15s;
  flex-shrink: 0;
}
.hamburger:hover {
  background: #f1f5f9;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all .25s cubic-bezier(.22,1,.36,1);
}
.staff-shell .sidebar {
  background: #102136;
}
.staff-topbar {
  background: #102136;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.staff-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
}
.staff-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(16,185,129,.4);
  }
  50% {
    opacity: .9;
    transform: scale(1.1);
    box-shadow: 0 0 0 5px rgba(16,185,129,0);
  }
}
.card {
  background: rgba(16, 33, 54, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: rgba(235, 148, 0, 0.18);
  box-shadow: 0 8px 30px rgba(235, 148, 0, 0.04);
}
.stat-card {
  background: rgba(16, 33, 54, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(235, 148, 0, 0.28);
}
.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Material Symbols Rounded';
  font-size: 22px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  margin-bottom: 4px;
}
.stat-icon.emerald {
  background: rgba(16,185,129,.10);
  color: #10b981;
}
.stat-icon.orange {
  background: rgba(235,148,0,.10);
  color: #eb9400;
}
.stat-icon.blue {
  background: rgba(97,141,184,.14);
  color: #618db8;
}
.stat-icon.amber {
  background: rgba(245,158,11,.10);
  color: #f59e0b;
}
.stat-icon.purple {
  background: rgba(139,92,246,.10);
  color: #8b5cf6;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 199;
  backdrop-filter: blur(2px);
  animation: fadeIn .2s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.mud-table-root {
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.mud-chip {
  font-family: 'Nunito', sans-serif !important;
}
.mud-typography {
  font-family: 'Nunito', sans-serif !important;
}
.mud-table {
  background-color: rgba(16, 33, 54, 0.45) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: var(--shadow-sm);
}
.mud-table-thead {
  background-color: rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.mud-table-cell {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: var(--text-muted) !important;
  font-size: 13.5px !important;
}
.mud-table-thead .mud-table-cell {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
}
.mud-table-row:hover {
  background-color: rgba(255, 255, 255, 0.02) !important;
}
.mud-input-control {
  --mud-palette-text-primary: var(--text-primary) !important;
  --mud-palette-text-secondary: var(--text-muted) !important;
}
.mud-paper {
  background-color: #102136 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.status-chip.pending {
  background: rgba(245,158,11,.1);
  color: #d97706;
}
.status-chip.done {
  background: rgba(16,185,129,.1);
  color: #059669;
}
.status-chip.cancelled {
  background: rgba(239,68,68,.1);
  color: #dc2626;
}
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay {
    display: block;
  }
  .main-shell {
    margin-left: 0 !important;
  }
  .main-content {
    padding: 16px;
  }
}
@media (max-height: 820px) {
  .sidebar-logo {
    padding: 12px 16px 10px;
  }
  .sidebar-logo-mark {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .sidebar-logo-text {
    font-size: 15px;
  }
  .sidebar-logo-sub {
    font-size: 10px;
  }
  .sidebar-user {
    padding: 10px 12px;
    margin: 8px 8px 4px;
    gap: 8px;
  }
  .sidebar-avatar {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .sidebar-user-name {
    font-size: 12px;
  }
  .sidebar-user-role {
    font-size: 10px;
  }
  .sidebar-tenant-section {
    padding: 0 16px !important;
    margin-bottom: 8px !important;
  }
  .sidebar-tenant-header {
    margin-bottom: 4px !important;
  }
  .sidebar-tenant-single {
    padding: 4px 8px !important;
    font-size: 12px !important;
    gap: 8px !important;
  }
  .sidebar-tenant-single span.material-symbols-outlined {
    font-size: 16px !important;
  }
  .sidebar-tenant-switcher {
    padding: 2px 8px !important;
  }
  .tenant-select {
    font-size: 12px !important;
  }
  .nav-section-label {
    padding: 10px 8px 4px;
  }
  .nav-item {
    padding: 7px 10px;
    font-size: 12.5px;
    gap: 8px;
  }
  .nav-icon {
    font-size: 16px;
    width: 18px;
  }
  .sidebar-footer {
    padding: 6px 10px 10px;
    gap: 1px;
  }
  .sidebar-divider {
    margin: 4px 0;
  }
  .lang-picker {
    padding: 6px 10px;
    font-size: 12px;
  }
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}
.mud-button-root {
  font-family: 'Nunito', sans-serif !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.mud-button-filled.mud-button-filled-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  box-shadow: 0 4px 14px rgba(235, 148, 0, 0.25) !important;
  border: 1px solid rgba(235, 148, 0, 0.2) !important;
}
.mud-button-filled.mud-button-filled-primary:hover {
  box-shadow: 0 6px 20px rgba(235, 148, 0, 0.4) !important;
  transform: translateY(-1px) !important;
}
.mud-button-filled.mud-button-filled-error {
  background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.25) !important;
  border: 1px solid rgba(239, 68, 68, 0.2) !important;
}
.mud-button-filled.mud-button-filled-error:hover {
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
  transform: translateY(-1px) !important;
}
.mud-button-outlined.mud-button-outlined-error {
  border-color: rgba(239, 68, 68, 0.3) !important;
  color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.03) !important;
}
.mud-button-outlined.mud-button-outlined-error:hover {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: #ef4444 !important;
}
.mud-dialog {
  background: rgba(16, 33, 54, 0.85) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: var(--shadow-lg) !important;
}
.mud-dialog-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 20px 24px !important;
}
.mud-dialog-content {
  padding: 24px !important;
}
.mud-dialog-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 16px 24px !important;
  background: rgba(0, 0, 0, 0.15) !important;
  border-radius: 0 0 20px 20px !important;
}
.theme-light .mud-dialog {
  background: rgba(248, 250, 252, 0.94) !important;
  border: 1px solid rgba(21, 54, 90, 0.09) !important;
  color: #15365a !important;
}
.theme-light .mud-dialog-title .mud-text {
  color: #15365a !important;
}
.theme-light .mud-dialog-title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.theme-light .mud-dialog-content {
  color: #334155 !important;
}
.theme-light .mud-dialog-actions {
  border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
  background: rgba(0, 0, 0, 0.02) !important;
}
.obsidian-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 38, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  z-index: 10;
  animation: fadeInOverlay 0.2s ease-out;
}
.theme-light .obsidian-loading-overlay {
  background: rgba(255, 255, 255, 0.5);
}
@keyframes fadeInOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 480px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.search-bar:focus-within {
  border-color: rgba(235, 148, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(235, 148, 0, 0.08);
  background: rgba(255, 255, 255, 0.06);
}
.search-bar--admin:focus-within {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
}
.search-bar .search-bar-icon {
  color: rgba(255, 255, 255, 0.45);
  font-size: 20px;
  flex-shrink: 0;
  transition: color .18s ease;
}
.search-bar:focus-within .search-bar-icon {
  color: #f6a71f;
}
.search-bar--admin:focus-within .search-bar-icon {
  color: #f43f5e;
}
.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #f8fafc;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  min-width: 0;
}
.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}
.search-bar-clear {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  padding: 2px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .12s ease, color .12s ease;
}
.search-bar-clear:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
}
.search-bar-clear .material-symbols-outlined {
  font-size: 18px;
}
.theme-light .search-bar {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}
.theme-light .search-bar:focus-within {
  background: #ffffff;
  border-color: rgba(235, 148, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(235, 148, 0, 0.08);
}
.theme-light .search-bar--admin:focus-within {
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.08);
}
.theme-light .search-bar .search-bar-icon {
  color: #94a3b8;
}
.theme-light .search-bar:focus-within .search-bar-icon {
  color: #eb9400;
}
.theme-light .search-bar--admin:focus-within .search-bar-icon {
  color: #e11d48;
}
.theme-light .search-bar input {
  color: #0f172a;
}
.theme-light .search-bar input::placeholder {
  color: #94a3b8;
}
.theme-light .search-bar-clear {
  color: #94a3b8;
}
.theme-light .search-bar-clear:hover {
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}
body.theme-light .mud-popover {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.18) !important;
}
body.theme-light .mud-popover .mud-list-item, body.theme-light .mud-popover .mud-list-item-text, body.theme-light .mud-popover .mud-select-list-item {
  color: #0f172a !important;
}
body.theme-light .mud-popover .mud-list-item:hover {
  background-color: rgba(0, 0, 0, 0.04) !important;
}
body.theme-light .mud-popover .mud-selected-item, body.theme-light .mud-popover .mud-list-item.mud-selected-item {
  background-color: rgba(235, 148, 0, 0.10) !important;
  color: #a56500 !important;
}
body.theme-light .mud-paper:not(.mud-popover) {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  color: #0f172a !important;
}
body.theme-light .mud-card {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  color: #0f172a !important;
}
body.theme-light .mud-card-header, body.theme-light .mud-card-content, body.theme-light .mud-card-actions {
  color: #0f172a !important;
}
body.theme-light .mud-table {
  background-color: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  border-radius: 12px;
  overflow: hidden;
}
body.theme-light .mud-table .mud-table-toolbar, body.theme-light .mud-table .mud-table-container, body.theme-light .mud-table .mud-table-pagination, body.theme-light .mud-table tfoot, body.theme-light .mud-table-foot {
  background-color: #ffffff !important;
  color: #0f172a !important;
}
body.theme-light .mud-table th {
  background-color: #f8fafc !important;
  color: #475569 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  font-weight: 700 !important;
}
body.theme-light .mud-table td {
  color: #0f172a !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
}
body.theme-light .mud-table .mud-table-row:hover > .mud-table-cell, body.theme-light .mud-table .mud-table-row.mud-selected-item > .mud-table-cell {
  background-color: rgba(0, 0, 0, 0.02) !important;
}
body.theme-light .mud-table tbody tr:nth-of-type(odd) > td {
  background-color: rgba(248, 250, 252, 0.5) !important;
}
body.theme-light .mud-table .mud-table-pagination-display, body.theme-light .mud-table .mud-table-pagination-actions, body.theme-light .mud-table .mud-typography {
  color: #475569 !important;
}
body.theme-light .mud-picker, body.theme-light .mud-picker-content, body.theme-light .mud-picker-toolbar, body.theme-light .mud-picker-calendar, body.theme-light .mud-picker-calendar-header {
  background-color: #ffffff !important;
  color: #0f172a !important;
}
body.theme-light .mud-picker-calendar-day {
  color: #0f172a !important;
}
body.theme-light .mud-picker-calendar-day:hover {
  background-color: rgba(235, 148, 0, 0.10) !important;
}
body.theme-light .mud-picker-calendar-day.mud-selected, body.theme-light .mud-picker-calendar-day-selected, body.theme-light .mud-range-selected {
  background-color: #eb9400 !important;
  color: #ffffff !important;
}
body.theme-light .mud-picker-calendar-day.mud-current {
  border: 1px solid #eb9400 !important;
}
body.theme-light .mud-picker-calendar-header-day {
  color: #94a3b8 !important;
}
body.theme-light .mud-range, body.theme-light .mud-picker-calendar-day.mud-range {
  background-color: rgba(235, 148, 0, 0.10) !important;
  color: #a56500 !important;
}
.theme-light .lang-dropdown {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.15) !important;
}
.theme-light .lang-option {
  color: #475569 !important;
}
.theme-light .lang-option:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  color: #0f172a !important;
}
.theme-light .lang-option.selected, .theme-light .lang-option.active {
  color: #cd7f00 !important;
  background: rgba(235, 148, 0, 0.08) !important;
}
.theme-light .manager-card {
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}
.theme-light .manager-card:hover {
  border-color: rgba(235, 148, 0, 0.3) !important;
  box-shadow: 0 8px 30px rgba(235, 148, 0, 0.06) !important;
}
.theme-light .manager-card--pending {
  background: rgba(241, 245, 249, 0.45) !important;
  border-color: rgba(0, 0, 0, 0.04) !important;
}
.theme-light .manager-name {
  color: #0f172a !important;
}
.theme-light .manager-slug {
  color: #64748b !important;
}
.theme-light .manager-oid {
  color: #64748b !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.03) !important;
}
.theme-light .manager-card-footer {
  border-top-color: rgba(0, 0, 0, 0.06) !important;
}
.manager-card-footer .mud-icon-button {
  color: var(--text-muted) !important;
  opacity: 0.6;
  transition: all 0.2s ease !important;
}
.manager-card-footer .mud-icon-button:hover {
  opacity: 1 !important;
}
.theme-light .manager-card-footer .mud-icon-button {
  color: #64748b !important;
}
.manager-card-footer .mud-icon-button[title*="Supprimer"]:hover, .manager-card-footer .mud-icon-button[title*="Delete"]:hover, .manager-card-footer .mud-icon-button[title*="Bloquer"]:hover, .manager-card-footer .mud-icon-button[title*="Deactivate"]:hover, .manager-card-footer .mud-icon-button[title*="Désactiver"]:hover {
  color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.08) !important;
}
.manager-card-footer .mud-icon-button[title*="Abonnement"]:hover, .manager-card-footer .mud-icon-button[title*="Subscription"]:hover, .manager-card-footer .mud-icon-button[title*="Payments"]:hover {
  color: #618db8 !important;
  background: rgba(97, 141, 184, 0.08) !important;
}
.manager-card-footer .mud-icon-button[title*="Activer"]:hover, .manager-card-footer .mud-icon-button[title*="Activate"]:hover {
  color: #10b981 !important;
  background: rgba(16, 185, 129, 0.08) !important;
}
.theme-light .admin-card {
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}
.theme-light .admin-card:hover {
  border-color: rgba(239, 68, 68, 0.3) !important;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.06) !important;
}
.theme-light .admin-name {
  color: #0f172a !important;
}
.theme-light .admin-role {
  color: #64748b !important;
}
.theme-light .admin-oid {
  color: #64748b !important;
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.03) !important;
}
.theme-light .admin-card-footer {
  border-top-color: rgba(0, 0, 0, 0.06) !important;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
    }
  }
}
