/* [project]/apps/web/src/app/operations/operations.css [app-client] (css) */
.operations-root {
  --background: #fff;
  --foreground: #0f172a;
  --card: #fff;
  --card-hover: #fff;
  --muted: #fff;
  --muted-foreground: #64748b;
  --border: #eef2ff;
  --border-hover: #e0e7ff;
  --ring: var(--color-primary);
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, .04);
  --shadow-md: 0 4px 20px rgba(15, 23, 42, .04);
  --shadow-lg: 0 10px 40px rgba(99, 102, 241, .1), 0 4px 20px rgba(15, 23, 42, .04);
  --shadow-card-hover: 0 16px 44px -6px rgba(99, 102, 241, .14), 0 6px 16px rgba(15, 23, 42, .05);
  background: var(--background);
  color: var(--foreground);
  zoom: .8;
  min-height: 100vh;
}

.operations-root *, .operations-root :before, .operations-root :after {
  border-color: var(--border);
}

.operations-shell {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.operations-body {
  flex: 1;
  min-height: 0;
  display: flex;
}

.operations-content {
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 32px 48px;
}

@media (max-width: 768px) {
  .operations-content {
    padding: 20px 16px 96px;
  }
}

@media (max-width: 1024px) {
  .operations-root {
    zoom: 1;
  }

  .operations-root, .operations-root .operations-shell, .operations-root .operations-body, .operations-root .operations-content {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .operations-content table {
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    display: block;
    overflow-x: auto;
  }

  .operations-content table th, .operations-content table td {
    white-space: nowrap;
  }

  .operations-root .ops-table-wrap {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }

  .operations-root .ops-table {
    width: auto;
    min-width: 100%;
    max-width: none;
    display: table;
  }
}

.operations-root .ops-sidebar {
  background: var(--card);
  border-right: 1px solid var(--border);
  flex-direction: column;
  flex-shrink: 0;
  width: 224px;
  height: calc(100vh - 64px);
  padding: 16px 12px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 64px;
  overflow-y: auto;
}

.operations-root .ops-sidebar-nav {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.operations-root .ops-sidebar-link {
  color: #475569;
  transition: all .15s var(--ease-smooth);
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  position: relative;
}

.operations-root .ops-sidebar-icon {
  color: #475569;
  width: 32px;
  height: 32px;
  transition: all .15s var(--ease-smooth);
  background: #f1f5f9;
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-sidebar-label {
  color: #1f2937;
  letter-spacing: .05px;
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.operations-root .ops-sidebar-link:hover {
  background: #f3f4f6;
}

.operations-root .ops-sidebar-link:hover .ops-sidebar-icon {
  color: var(--color-primary);
  background: rgba(0, 61, 165, .08);
}

.operations-root .ops-sidebar-link:hover .ops-sidebar-label {
  color: #0f172a;
}

.operations-root .ops-sidebar-link[data-active="true"] {
  background: linear-gradient(90deg, rgba(0, 61, 165, .1) 0%, rgba(0, 61, 165, .04) 100%);
}

.operations-root .ops-sidebar-link[data-active="true"]:before {
  content: "";
  background: var(--color-primary);
  border-radius: 0 3px 3px 0;
  width: 3px;
  height: 22px;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
}

.operations-root .ops-sidebar-link[data-active="true"] .ops-sidebar-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 10px -2px rgba(0, 61, 165, .4);
}

.operations-root .ops-sidebar-link[data-active="true"] .ops-sidebar-label {
  color: var(--color-primary);
  font-weight: 700;
}

.operations-root .ops-sidebar-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .operations-root .ops-sidebar {
    width: 200px;
  }
}

.ops-mobile-burger, .ops-mobile-overlay {
  display: none;
}

@media (max-width: 768px) {
  .operations-root .ops-sidebar {
    display: none;
  }

  .ops-mobile-burger {
    z-index: 80;
    background: var(--color-primary, #003da5);
    color: #fff;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    display: inline-flex;
    position: fixed;
    bottom: 20px;
    right: 16px;
    box-shadow: 0 10px 26px -8px rgba(0, 61, 165, .55);
  }

  .ops-mobile-overlay {
    z-index: 85;
    background: rgba(15, 23, 42, .5);
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .operations-root .ops-sidebar.ops-sidebar--mobile-open {
    z-index: 90;
    width: 272px;
    max-width: 84vw;
    height: 100vh;
    padding-top: 20px;
    animation: .22s ops-drawer-in;
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    box-shadow: 0 0 50px rgba(0, 0, 0, .35);
  }

  @keyframes ops-drawer-in {
    from {
      transform: translateX(-100%);
    }

    to {
      transform: translateX(0);
    }
  }
}

.operations-root .ops-sidebar-group {
  flex-direction: column;
  display: flex;
}

.operations-root .ops-sidebar-group-toggle {
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  font-family: inherit;
}

.operations-root .ops-sidebar-group-chev {
  color: #94a3b8;
  transition: transform .18s var(--ease-smooth);
  flex-shrink: 0;
  margin-left: auto;
}

.operations-root .ops-sidebar-group-toggle[data-expanded="true"] .ops-sidebar-group-chev {
  color: var(--color-primary);
  transform: rotate(180deg);
}

.operations-root .ops-sidebar-children {
  border-left: 1px solid var(--border);
  animation: opsGroupExpand .16s var(--ease-smooth) both;
  flex-direction: column;
  gap: 1px;
  margin-left: 19px;
  padding: 4px 0 6px 12px;
  display: flex;
}

@keyframes opsGroupExpand {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.operations-root .ops-sidebar-child {
  color: #64748b;
  white-space: nowrap;
  transition: all .12s var(--ease-smooth);
  border-radius: 8px;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.operations-root .ops-sidebar-child:hover {
  color: #0f172a;
  background: #f3f4f6;
}

.operations-root .ops-sidebar-child[data-active="true"] {
  color: var(--color-primary);
  background: rgba(0, 61, 165, .08);
  font-weight: 700;
}

.operations-root .ops-sidebar-child-icon {
  color: #94a3b8;
  width: 22px;
  height: 22px;
  transition: all .12s var(--ease-smooth);
  background: #f1f5f9;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-sidebar-child:hover .ops-sidebar-child-icon {
  color: var(--color-primary);
  background: rgba(0, 61, 165, .1);
}

.operations-root .ops-sidebar-child[data-active="true"] .ops-sidebar-child-icon {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 8px -2px rgba(0, 61, 165, .4);
}

.operations-root .ops-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  z-index: 30;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 64px;
  padding: 0 28px;
  display: grid;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.operations-root .ops-header-left {
  align-items: center;
  gap: 10px;
  display: flex;
}

.operations-root .ops-header-burger {
  border: 1px solid var(--border, #e5e7eb);
  color: #1e293b;
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  display: none;
}

.operations-root .ops-header-burger:active {
  background: #f1f5f9;
}

.operations-root .ops-sidebar-mobile-sep {
  background: var(--border, #eef2ff);
  height: 1px;
  margin: 8px 4px 6px;
}

.operations-root .ops-sidebar-mobtop {
  border-bottom: 1px solid var(--border, #eef2ff);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
}

.operations-root .ops-sidebar-brand {
  background: var(--color-primary, #003da5);
  color: #fff;
  border-radius: 11px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.operations-root .ops-sidebar-brandname {
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
}

.operations-root .ops-sidebar-mobtop-bell {
  margin-left: auto;
}

.operations-root .ops-logo {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  letter-spacing: .5px;
  width: 44px;
  height: 44px;
  transition: transform .18s var(--ease-spring);
  border-radius: 13px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  box-shadow: 0 6px 14px -3px rgba(0, 61, 165, .35);
}

.operations-root .ops-logo:hover {
  transform: scale(1.05);
}

.operations-root .ops-main-nav {
  scrollbar-width: none;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
  min-width: 0;
  height: 100%;
  display: flex;
  overflow-x: auto;
}

.operations-root .ops-main-nav::-webkit-scrollbar {
  display: none;
}

.operations-root .ops-nav-link {
  color: #1f2937;
  white-space: nowrap;
  min-width: 72px;
  transition: all .15s var(--ease-smooth);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  padding: 6px 12px 5px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.operations-root .ops-nav-icon {
  width: 34px;
  height: 34px;
  transition: all .18s var(--ease-smooth);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-nav-label {
  letter-spacing: .1px;
  color: #111827;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.operations-root .ops-nav-link:hover {
  background: #f3f4f6;
}

.operations-root .ops-nav-link:hover .ops-nav-icon {
  color: var(--color-primary);
  background: rgba(0, 61, 165, .08);
}

.operations-root .ops-nav-link:hover .ops-nav-label {
  color: var(--color-primary);
}

.operations-root .ops-nav-link[data-active="true"] {
  background: linear-gradient(rgba(0, 61, 165, .1) 0%, rgba(0, 61, 165, 0) 90%);
}

.operations-root .ops-nav-link[data-active="true"] .ops-nav-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  box-shadow: 0 10px 22px -6px rgba(0, 61, 165, .55), 0 4px 8px -2px rgba(0, 61, 165, .3);
}

.operations-root .ops-nav-link[data-active="true"] .ops-nav-label {
  color: var(--color-primary);
  font-weight: 800;
}

.operations-root .ops-nav-link[data-active="true"]:after {
  content: "";
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
  width: 28px;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.operations-root .ops-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.operations-root .ops-nav-create {
  cursor: pointer;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.operations-root .ops-nav-create .ops-nav-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  box-shadow: 0 8px 18px -4px rgba(0, 61, 165, .45), 0 3px 6px -2px rgba(0, 61, 165, .25);
}

.operations-root .ops-nav-create .ops-nav-label {
  color: var(--color-primary);
  font-weight: 700;
}

.operations-root .ops-nav-create:hover .ops-nav-icon {
  transform: scale(1.06);
  box-shadow: 0 12px 24px -4px rgba(0, 61, 165, .55), 0 4px 8px -2px rgba(0, 61, 165, .3);
}

.operations-root .ops-nav-create:hover {
  background: none;
}

.operations-root .ops-nav-create:active .ops-nav-icon {
  transform: scale(1);
}

.operations-root .ops-modal-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 24px;
  padding-block: max(24px, env(safe-area-inset-top, 0px)) max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  animation: opsBackdropIn .18s var(--ease-smooth) both;
  isolation: isolate;
  background: rgba(15, 23, 42, .48);
  place-items: center;
  display: grid;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 639px) {
  .operations-root .ops-modal-overlay {
    place-items: stretch stretch !important;
    padding: 0 !important;
  }

  .operations-root .ops-modal-overlay > * {
    border-radius: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
  }
}

body.ops-modal-open .gf-ai-fab, body.ops-modal-open .ops-mobile-burger, body.ops-modal-open .ops-tabbar {
  display: none !important;
}

.operations-root .ops-tabbar {
  display: none;
}

.operations-root .ops-act-planning-body {
  display: contents;
}

.operations-root .ops-planning-mobile-kpis, .operations-root .ops-topnav, .operations-root .gf-kpihero-toggle {
  display: none;
}

@media (max-width: 768px) {
  .operations-root .ops-topnav {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: var(--card, #fff);
    border-bottom: 1px solid var(--border, #eef2ff);
    z-index: 29;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
    top: 64px;
    overflow-x: auto;
  }

  .operations-root .ops-topnav::-webkit-scrollbar {
    display: none;
  }

  .operations-root .ops-topnav-link, .operations-root .ops-topnav-create {
    white-space: nowrap;
    border: 1px solid var(--border, #e5e7eb);
    color: #475569;
    cursor: pointer;
    background: #fff;
    border-radius: 999px;
    flex: none;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
  }

  .operations-root .ops-topnav-link[data-active="true"], .operations-root .ops-topnav-create {
    background: var(--color-primary, #003da5);
    color: #fff;
    border-color: var(--color-primary, #003da5);
  }

  .operations-root .ops-header {
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    height: auto;
    padding: 6px 10px;
    display: flex;
  }

  .operations-root .ops-header-left {
    flex-shrink: 0;
    order: 1;
  }

  .operations-root .ops-logo, .operations-root .ops-header-right {
    display: none !important;
  }

  .operations-root .ops-main-nav {
    flex: auto;
    order: 2;
    justify-content: flex-start;
    gap: 4px;
    width: auto;
    min-width: 0;
    height: auto;
    display: flex;
  }

  .operations-root .ops-nav-link {
    min-width: 0;
    padding: 4px 8px 3px;
  }

  .operations-root .ops-nav-icon {
    width: 28px;
    height: 28px;
  }

  .operations-root .ops-nav-label {
    font-size: 10.5px;
  }

  .ops-mobile-burger, .operations-root .ops-topnav {
    display: none !important;
  }

  .operations-root .ops-header-burger {
    display: inline-flex;
  }

  .operations-root .ops-popover {
    overflow-y: auto;
    z-index: 9999 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    max-height: 78vh !important;
    position: fixed !important;
    top: 66px !important;
    left: 8px !important;
    right: 8px !important;
  }

  .gf-ai-fab {
    gap: 0 !important;
    padding: 6px !important;
    bottom: 16px !important;
    left: auto !important;
    right: 14px !important;
  }

  .gf-ai-fab .gf-ai-fab-label {
    display: none !important;
  }

  .operations-root .gf-ai-panel {
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    top: 72px !important;
    bottom: 8px !important;
    left: 8px !important;
    right: 8px !important;
  }

  .operations-root .operations-content {
    padding-bottom: 88px;
  }

  .operations-root .ops-act-planning-controls {
    gap: 6px !important;
  }

  .operations-root .ops-act-planning-controls .ops-btn-secondary {
    height: auto !important;
    padding: 4px 9px !important;
    font-size: 11px !important;
  }

  .operations-root .ops-act-planning-controls > div:first-child > span {
    margin-left: 4px !important;
    font-size: 12px !important;
  }

  .operations-root .ops-kpi-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .operations-root .ops-act-alerts {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 8px !important;
    display: grid !important;
  }

  .operations-root .ops-act-alerts > span:first-child {
    grid-column: 1 / -1;
    margin-right: 0 !important;
  }

  .operations-root .ops-act-alerts > button {
    width: 100%;
    border-radius: 12px !important;
    justify-content: flex-start !important;
  }

  .ops-activite-page .ops-kpihero-pills {
    display: none !important;
  }

  .ops-activite-page .ops-kpi-strip {
    gap: 7px !important;
  }

  .ops-activite-page .ops-act-kpi-pill {
    border-radius: 12px !important;
    gap: 8px !important;
    padding: 9px 10px !important;
  }

  .ops-activite-page .ops-act-kpi-ic {
    border-radius: 8px !important;
    width: 28px !important;
    height: 28px !important;
  }

  .ops-activite-page .ops-act-kpi-val {
    font-size: 15px !important;
  }

  .ops-activite-page .ops-act-kpi-lbl {
    letter-spacing: .02em !important;
    font-size: 9px !important;
  }

  .ops-activite-page .ops-act-top5 {
    display: none !important;
  }

  .ops-activite-page .ops-act-alerts {
    gap: 6px !important;
    margin-bottom: 12px !important;
  }

  .ops-activite-page .ops-act-feeds {
    gap: 10px !important;
  }

  .gf-kpi-pill {
    gap: 6px !important;
    height: 30px !important;
    padding: 0 9px !important;
  }

  .gf-kpi-pill-ic {
    width: 18px !important;
    height: 18px !important;
  }

  .gf-kpi-pill-label {
    font-size: 8.5px !important;
  }

  .gf-kpi-pill-value {
    font-size: 12px !important;
  }

  .operations-root .gf-kpihero-toggle {
    border: 1px solid var(--border, #e5e7eb);
    color: #475569;
    cursor: pointer;
    background: #fff;
    border-radius: 999px;
    align-self: flex-start;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
  }

  .operations-root .ops-kpihero-pills[data-open="false"], .operations-root .ops-kpihero-sub, .ops-activite-page .gf-kpihero-toggle, .ops-planning-page .gf-kpihero-toggle, .ops-planning-page .ops-kpihero-pills, .ops-planning-page .ops-kpihero-sub {
    display: none !important;
  }

  .ops-planning-page .ops-planning-mobile-kpis {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-top: 14px;
    display: grid !important;
  }

  .operations-root .ops-tabbar {
    z-index: 75;
    height: 62px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--card, #fff);
    border-top: 1px solid var(--border, #eef2ff);
    align-items: stretch;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 -4px 16px -8px rgba(15, 23, 42, .18);
  }

  .operations-root .ops-tab {
    cursor: pointer;
    color: #64748b;
    background: none;
    border: none;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 3px;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
  }

  .operations-root .ops-tab[data-active="true"], .operations-root .ops-tab-create {
    color: var(--color-primary, #003da5);
  }

  .operations-root .ops-tab-create-icon {
    color: #fff;
    background: linear-gradient(135deg, #003da5, #1e63d6);
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin-top: -18px;
    display: inline-flex;
    box-shadow: 0 8px 18px -4px rgba(0, 61, 165, .55);
  }

  .operations-root .gf-cmp-row {
    flex-direction: column;
    align-items: stretch;
  }

  .operations-root .gf-cmp-select {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .operations-root .gf-ct-section {
    padding: 12px 13px !important;
  }
}

@media (max-width: 860px) {
  .operations-root .ops-editor-body-grid {
    grid-template-columns: 1fr !important;
  }
}

.operations-root .ops-create-backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 9999;
  animation: opsBackdropIn .18s var(--ease-smooth) both;
  background: rgba(15, 23, 42, .48);
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes opsBackdropIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.operations-root .ops-create-modal {
  background: var(--card);
  width: min(640px, 100vw - 32px);
  max-height: min(100vh - 48px, 100dvh - 48px);
  animation: opsModalIn .22s var(--ease-spring) both;
  border-radius: 18px;
  margin: auto;
  padding: 24px 28px 28px;
  overflow-y: auto;
  box-shadow: 0 28px 56px -12px rgba(15, 23, 42, .3), 0 12px 24px -8px rgba(15, 23, 42, .15);
}

@keyframes opsModalIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.operations-root .ops-create-header {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  display: flex;
}

.operations-root .ops-create-title {
  color: #0f172a;
  letter-spacing: -.3px;
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.operations-root .ops-create-close {
  border: 1px solid var(--border);
  color: #475569;
  cursor: pointer;
  width: 34px;
  height: 34px;
  transition: all .15s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-create-close:hover {
  color: #0f172a;
  border-color: var(--border-hover);
  background: #f1f5f9;
}

.operations-root .ops-create-subtitle {
  color: #64748b;
  margin: 6px 0 18px;
  font-size: 13px;
  font-weight: 400;
}

.operations-root .ops-create-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  display: grid;
}

@media (max-width: 600px) {
  .operations-root .ops-create-grid {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-create-option {
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: transform .18s var(--ease-spring), border-color .18s var(--ease-smooth), box-shadow .18s var(--ease-smooth), background .18s var(--ease-smooth);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-create-option:hover {
  border-color: var(--border-hover);
  background: #fafbff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(15, 23, 42, .1), 0 4px 8px -4px rgba(15, 23, 42, .05);
}

.operations-root .ops-create-option:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.operations-root .ops-create-option-icon {
  border-radius: 11px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
}

.operations-root .ops-create-option-text {
  flex-direction: column;
  flex: 1;
  gap: 1px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-create-option-label {
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.3;
}

.operations-root .ops-create-option-desc {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 400;
}

.operations-root .ops-activite {
  animation: opsFadeUp .5s var(--ease-smooth) both;
  flex-direction: column;
  gap: 28px;
  display: flex;
}

.operations-root .ops-activite-hero {
  align-items: center;
  gap: 14px;
  display: flex;
}

.operations-root .ops-activite-hero-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: inline-flex;
  box-shadow: 0 8px 18px -4px rgba(0, 61, 165, .4);
}

.operations-root .ops-activite-title {
  letter-spacing: -.4px;
  color: #0f172a;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.operations-root .ops-activite-subtitle {
  color: #64748b;
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.5;
}

.operations-root .ops-activite-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 8px -2px rgba(15, 23, 42, .04);
}

.operations-root .ops-activite-section-head {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  display: flex;
}

.operations-root .ops-activite-section-title {
  align-items: center;
  gap: 10px;
  display: flex;
}

.operations-root .ops-activite-section-title h2 {
  color: #0f172a;
  letter-spacing: -.2px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.operations-root .ops-activite-section-icon {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.operations-root .ops-activite-cta {
  color: var(--color-primary);
  transition: all .15s var(--ease-smooth);
  white-space: nowrap;
  background: rgba(0, 61, 165, .06);
  border-radius: 9px;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.operations-root .ops-activite-cta:hover {
  background: rgba(0, 61, 165, .12);
  transform: translateX(2px);
}

.operations-root .ops-activite-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

@media (max-width: 880px) {
  .operations-root .ops-activite-grid {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-activite-metric {
  border: 1px solid var(--border);
  transition: all .15s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 12px;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  display: flex;
}

.operations-root .ops-activite-metric:hover {
  border-color: var(--border-hover);
  background: var(--card);
  box-shadow: 0 4px 10px -4px rgba(15, 23, 42, .06);
}

.operations-root .ops-activite-metric-icon {
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.operations-root .ops-activite-metric-text {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-activite-metric-label {
  color: #64748b;
  letter-spacing: .1px;
  font-size: 11.5px;
  font-weight: 500;
}

.operations-root .ops-activite-metric-value {
  color: #0f172a;
  letter-spacing: -.4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.operations-root .ops-activite-metric-hint {
  color: #64748b;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
}

.operations-root .ops-form-modal {
  background: var(--card);
  width: min(640px, 100vw - 32px);
  max-height: min(100vh - 48px, 100dvh - 48px);
  animation: opsModalIn .2s var(--ease-spring) both;
  border-radius: 20px;
  flex-direction: column;
  margin: auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 32px 64px -16px rgba(15, 23, 42, .32), 0 16px 32px -8px rgba(15, 23, 42, .18);
}

.operations-root .ops-form-modal-wide {
  width: min(640px, 100vw - 32px);
}

.operations-root .ops-form-modal-compact {
  width: min(520px, 100vw - 32px);
}

.operations-root .ops-segmented {
  background: #eef2ff;
  border: 1px solid rgba(0, 61, 165, .1);
  border-radius: 11px;
  gap: 2px;
  width: 100%;
  padding: 3px;
  display: inline-flex;
}

.operations-root .ops-segmented-btn {
  color: #475569;
  cursor: pointer;
  transition: all .15s var(--ease-smooth);
  white-space: nowrap;
  background: none;
  border: none;
  border-radius: 8px;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.operations-root .ops-segmented-btn:hover:not([data-active="true"]) {
  color: #0f172a;
}

.operations-root .ops-segmented-btn[data-active="true"] {
  background: var(--card);
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: 0 2px 6px -1px rgba(15, 23, 42, .08), 0 0 0 1px rgba(0, 61, 165, .1);
}

.operations-root .ops-section-count {
  color: var(--color-primary);
  letter-spacing: 0;
  font-size: 11px;
  font-weight: 600;
}

.operations-root .ops-btn-sm {
  border-radius: 9px;
  height: 32px;
  padding: 0 12px;
  font-size: 12px;
}

.operations-root .ops-plate-search {
  align-items: stretch;
  gap: 8px;
  display: flex;
}

.operations-root .ops-plate-search > .ops-btn-primary {
  white-space: nowrap;
  height: 44px;
  padding: 0 16px;
}

.operations-root .ops-plate-field {
  flex: 1;
  align-items: stretch;
  display: flex;
  position: relative;
}

.operations-root .ops-plate-flag {
  color: rgba(0, 0, 0, 0);
  border: 1px solid var(--border);
  letter-spacing: .5px;
  background: linear-gradient(#003da5 0%, #003da5 33%, #fff 33%, #fff 66%, #ef4135 66%, #ef4135 100%);
  border-right: none;
  border-radius: 11px 0 0 11px;
  justify-content: center;
  align-items: center;
  width: 36px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  position: relative;
}

.operations-root .ops-plate-flag:after {
  content: "F";
  color: #fff;
  text-shadow: 0 0 2px rgba(0, 0, 0, .45), 0 1px 1px rgba(0, 0, 0, .3);
  justify-content: center;
  align-items: center;
  font-weight: 900;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.operations-root .ops-plate-input {
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1;
  font-family: ui-monospace, SF Mono, Menlo, Monaco, monospace;
  font-weight: 700;
  border-radius: 0 11px 11px 0 !important;
}

.operations-root .ops-plate-hint {
  color: #64748b;
  margin: 8px 0 0;
  font-size: 11px;
  font-style: italic;
}

.operations-root .ops-vehicle-results {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.operations-root .ops-vehicle-result {
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s var(--ease-smooth), background .15s var(--ease-smooth), box-shadow .15s var(--ease-smooth);
  border-radius: 12px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-vehicle-result:hover {
  border-color: var(--border-hover);
  background: #fafbfc;
}

.operations-root .ops-vehicle-result[data-selected="true"] {
  background: linear-gradient(135deg, rgba(0, 61, 165, .08) 0%, rgba(37, 99, 235, .04) 100%);
  border-color: rgba(0, 61, 165, .32);
  box-shadow: inset 0 0 0 1px rgba(0, 61, 165, .08), 0 4px 10px -4px rgba(0, 61, 165, .2);
}

.operations-root .ops-vehicle-result-radio {
  width: 18px;
  height: 18px;
  transition: all .15s var(--ease-smooth);
  background: var(--card);
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-vehicle-result[data-selected="true"] .ops-vehicle-result-radio {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.operations-root .ops-vehicle-result-radio-dot {
  background: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.operations-root .ops-loading-row {
  color: #64748b;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.operations-root .ops-spin {
  animation: .8s linear infinite opsSpin;
}

@keyframes opsSpin {
  to {
    transform: rotate(360deg);
  }
}

.operations-root .ops-vehicle-empty {
  border: 1px dashed var(--border);
  color: #64748b;
  text-align: center;
  background: #fafbfc;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 22px 16px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
}

.operations-root .ops-vehicle-empty svg {
  color: #cbd5e1;
}

.operations-root .ops-vehicle-empty-hint {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 400;
}

.operations-root .ops-vehicle-list {
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.operations-root .ops-vehicle-card {
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color .12s var(--ease-smooth);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 11px 12px 11px 14px;
  display: flex;
}

.operations-root .ops-vehicle-card:hover {
  border-color: var(--border-hover);
}

.operations-root .ops-vehicle-card-plate {
  border: 1px solid var(--border);
  letter-spacing: .6px;
  color: #0f172a;
  white-space: nowrap;
  background: #fafbfc;
  border-radius: 7px;
  flex-shrink: 0;
  align-items: center;
  height: 30px;
  padding: 0 9px;
  font-family: ui-monospace, SF Mono, Menlo, Monaco, monospace;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-vehicle-card-info {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-vehicle-card-name {
  color: #0f172a;
  letter-spacing: -.1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 700;
  overflow: hidden;
}

.operations-root .ops-vehicle-card-spec {
  color: #64748b;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11.5px;
  font-weight: 500;
  overflow: hidden;
}

.operations-root .ops-vehicle-card-remove {
  color: #94a3b8;
  cursor: pointer;
  width: 30px;
  height: 30px;
  transition: all .12s var(--ease-smooth);
  background: none;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-vehicle-card-remove:hover {
  color: var(--color-danger);
  background: rgba(220, 38, 38, .08);
  border-color: rgba(220, 38, 38, .2);
}

.operations-root .ops-client-list {
  flex-direction: column;
  gap: 4px;
  max-height: 420px;
  display: flex;
  overflow-y: auto;
}

.operations-root .ops-client-row {
  background: var(--card);
  cursor: pointer;
  text-align: left;
  transition: all .12s var(--ease-smooth);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-client-row:hover {
  background: #f8fafc;
}

.operations-root .ops-client-row[data-selected="true"] {
  background: rgba(0, 61, 165, .06);
  border-color: rgba(0, 61, 165, .25);
}

.operations-root .ops-client-row-text {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-client-row-name {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-client-row-meta {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 500;
}

.operations-root .ops-client-row-radio {
  background: var(--card);
  color: #fff;
  width: 22px;
  height: 22px;
  transition: all .12s var(--ease-smooth);
  border: 1.5px solid #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-client-row[data-selected="true"] .ops-client-row-radio {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.operations-root .ops-client-compact {
  background: linear-gradient(135deg, rgba(0, 61, 165, .04), rgba(37, 99, 235, .02));
  border: 1px solid rgba(0, 61, 165, .12);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  display: flex;
}

.operations-root .ops-client-compact-text {
  flex-direction: column;
  flex: 1;
  gap: 1px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-client-compact-name {
  color: #0f172a;
  letter-spacing: -.1px;
  font-size: 13.5px;
  font-weight: 700;
}

.operations-root .ops-client-compact-meta {
  color: #475569;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11.5px;
  font-weight: 500;
  overflow: hidden;
}

.operations-root .ops-article-list {
  flex-direction: column;
  gap: 6px;
  max-height: 360px;
  margin-top: 4px;
  display: flex;
  overflow-y: auto;
}

.operations-root .ops-article-row {
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: all .12s var(--ease-smooth);
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-article-row:hover {
  border-color: var(--border-hover);
  background: #fafbfc;
}

.operations-root .ops-article-row[data-selected="true"] {
  background: rgba(0, 61, 165, .06);
  border-color: rgba(0, 61, 165, .3);
  box-shadow: inset 0 0 0 1px rgba(0, 61, 165, .1);
}

.operations-root .ops-article-row-info {
  flex-direction: column;
  flex: 1;
  gap: 5px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-article-row-name {
  color: #0f172a;
  letter-spacing: -.1px;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-article-row-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: inline-flex;
}

.operations-root .ops-article-row-qty {
  color: #64748b;
  font-size: 11px;
}

.operations-root .ops-article-row-price {
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
}

.operations-root .ops-article-quantity-row {
  background: rgba(0, 61, 165, .04);
  border: 1px solid rgba(0, 61, 165, .12);
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 12px 14px;
  display: flex;
}

.operations-root .ops-devis-editor {
  width: min(900px, 100vw - 32px);
}

.operations-root .ops-devis-lines-wrap {
  border: 1px solid var(--border);
  border-radius: 11px;
  overflow: hidden;
}

.operations-root .ops-devis-lines {
  border-collapse: collapse;
  width: 100%;
  font-size: 12.5px;
}

.operations-root .ops-devis-lines thead {
  background: #fafbfc;
}

.operations-root .ops-devis-lines th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #64748b;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  padding: 9px 10px;
  font-size: 10.5px;
  font-weight: 700;
}

.operations-root .ops-devis-lines th.num {
  text-align: right;
}

.operations-root .ops-devis-lines td {
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  padding: 6px 10px;
}

.operations-root .ops-devis-lines td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.operations-root .ops-devis-lines tr:last-child td {
  border-bottom: none;
}

.operations-root .ops-devis-lines .article-cell {
  color: #0f172a;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 250px;
  font-weight: 600;
  overflow: hidden;
}

.operations-root .ops-devis-lines-readonly td {
  padding: 10px;
}

.operations-root .ops-input-mini {
  text-align: right;
  font-variant-numeric: tabular-nums;
  border-radius: 7px;
  width: 80px;
  height: 30px;
  padding: 0 8px;
  font-size: 12.5px;
}

.operations-root .ops-devis-totals {
  background: linear-gradient(135deg, rgba(16, 185, 129, .04), rgba(16, 185, 129, .02));
  border: 1px solid rgba(16, 185, 129, .16);
  border-radius: 12px;
  flex-direction: column;
  gap: 6px;
  max-width: 360px;
  margin-top: 14px;
  margin-left: auto;
  padding: 14px 18px;
  display: flex;
}

.operations-root .ops-devis-total-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.operations-root .ops-devis-total-row > span:first-child {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.operations-root .ops-devis-total-row > span:last-child {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-devis-total-divider {
  background: rgba(16, 185, 129, .2);
  height: 1px;
  margin: 4px 0;
}

.operations-root .ops-devis-total-final > span:first-child {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-devis-total-final > span:last-child {
  color: #059669;
  letter-spacing: -.4px;
  font-size: 22px;
  font-weight: 800;
}

.operations-root .ops-devis-actions {
  flex-wrap: wrap;
  gap: 8px;
}

.operations-root .ops-btn-success {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  box-shadow: 0 8px 18px -4px rgba(16, 185, 129, .45), 0 4px 8px -2px rgba(16, 185, 129, .25), inset 0 1px rgba(255, 255, 255, .18);
}

.operations-root .ops-btn-success:hover:not(:disabled) {
  box-shadow: 0 12px 28px -4px rgba(16, 185, 129, .55), 0 6px 12px -2px rgba(16, 185, 129, .3), inset 0 1px rgba(255, 255, 255, .2);
}

.operations-root .ops-version-badge {
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: rgba(245, 158, 11, .12);
  border-radius: 999px;
  align-items: center;
  height: 18px;
  margin-top: 6px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-plan-modal {
  width: min(720px, 100vw - 32px);
}

.operations-root .ops-cal-week-nav {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  display: flex;
}

.operations-root .ops-cal-week-label {
  color: #0f172a;
  text-align: center;
  flex: 1;
  font-size: 13px;
  font-weight: 600;
}

.operations-root .ops-cal-days {
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  display: grid;
}

.operations-root .ops-cal-day {
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .12s var(--ease-smooth);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-cal-day:hover:not([data-disabled="true"]) {
  border-color: var(--border-hover);
  background: #f8fafc;
}

.operations-root .ops-cal-day[data-selected="true"] {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0 6px 14px -3px rgba(0, 61, 165, .4);
}

.operations-root .ops-cal-day[data-disabled="true"] {
  opacity: .4;
  cursor: not-allowed;
  background: #fafbfc;
}

.operations-root .ops-cal-day-name {
  text-transform: capitalize;
  font-size: 11.5px;
  font-weight: 600;
}

.operations-root .ops-cal-slots {
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 6px;
  display: grid;
}

.operations-root .ops-cal-slot {
  color: #475569;
  cursor: pointer;
  height: 38px;
  transition: all .12s var(--ease-smooth);
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.operations-root .ops-cal-slot:hover:not([data-occupied="true"]):not([data-selected="true"]) {
  background: var(--card);
  border-color: var(--border-hover);
  color: #0f172a;
}

.operations-root .ops-cal-slot[data-occupied="true"] {
  color: #b91c1c;
  cursor: not-allowed;
  background: rgba(252, 165, 165, .3);
  text-decoration: line-through;
}

.operations-root .ops-cal-slot[data-selected="true"] {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0 4px 10px -2px rgba(0, 61, 165, .4);
}

.operations-root .ops-notify-actions {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}

@media (max-width: 480px) {
  .operations-root .ops-notify-actions {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-notify-btn {
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .15s var(--ease-smooth), transform .18s var(--ease-spring), box-shadow .18s var(--ease-smooth);
  text-align: center;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 14px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-notify-btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(15, 23, 42, .1), 0 4px 8px -4px rgba(15, 23, 42, .06);
}

.operations-root .ops-notify-icon {
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: inline-flex;
}

.operations-root .ops-notify-label {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-notify-desc {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
}

.operations-root .ops-planning-nav {
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  display: flex;
}

.operations-root .ops-planning-week-label {
  color: #0f172a;
  text-transform: capitalize;
  text-align: center;
  min-width: 240px;
  font-size: 14px;
  font-weight: 700;
}

.operations-root .ops-planning-grid {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 8px -2px rgba(15, 23, 42, .04);
}

.operations-root .ops-planning-header-row {
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
  grid-template-columns: 64px repeat(5, 1fr);
  display: grid;
}

.operations-root .ops-planning-corner {
  border-right: 1px solid var(--border);
}

.operations-root .ops-planning-day-header {
  border-right: 1px solid var(--border);
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 12px 14px;
  display: flex;
}

.operations-root .ops-planning-day-header:last-child {
  border-right: none;
}

.operations-root .ops-planning-day-header[data-today="true"] {
  background: linear-gradient(rgba(0, 61, 165, .08) 0%, rgba(0, 0, 0, 0) 100%);
}

.operations-root .ops-planning-day-name {
  color: #0f172a;
  text-transform: capitalize;
  font-size: 12.5px;
  font-weight: 700;
}

.operations-root .ops-planning-day-date {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
}

.operations-root .ops-planning-day-header[data-today="true"] .ops-planning-day-name, .operations-root .ops-planning-day-header[data-today="true"] .ops-planning-day-date {
  color: var(--color-primary);
}

.operations-root .ops-planning-body {
  grid-template-columns: 64px repeat(5, 1fr);
  display: grid;
  position: relative;
}

.operations-root .ops-planning-hours {
  border-right: 1px solid var(--border);
  position: relative;
}

.operations-root .ops-planning-hour-label {
  color: #94a3b8;
  border-top: 1px solid var(--border);
  justify-content: center;
  align-items: flex-start;
  padding-top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.operations-root .ops-planning-hours .ops-planning-hour-label:first-child {
  border-top: none;
}

.operations-root .ops-planning-day-col {
  border-right: 1px solid var(--border);
  min-height: 100%;
  position: relative;
}

.operations-root .ops-planning-day-col:last-child {
  border-right: none;
}

.operations-root .ops-planning-day-col[data-today="true"] {
  background: rgba(0, 61, 165, .02);
}

.operations-root .ops-planning-slot {
  border-bottom: 1px dashed rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  right: 0;
}

.operations-root .ops-planning-slot[data-half="true"] {
  border-bottom-color: #f1f5f9;
}

.operations-root .ops-planning-slot:not([data-half="true"]) {
  border-bottom: 1px solid var(--border);
}

.operations-root .ops-rdv-card {
  cursor: pointer;
  text-align: left;
  transition: transform .15s var(--ease-spring), box-shadow .15s var(--ease-smooth), filter .15s var(--ease-smooth);
  border: none;
  border-left: 3px solid;
  border-radius: 6px;
  flex-direction: column;
  gap: 1px;
  padding: 6px 8px;
  font-family: inherit;
  display: flex;
  position: absolute;
  left: 4px;
  right: 4px;
  overflow: hidden;
}

.operations-root .ops-rdv-card[data-kind="planifie"] {
  --rdv-color: #003da5;
  background: rgba(59, 130, 246, .12);
  border-left-color: #003da5;
}

.operations-root .ops-rdv-card[data-kind="ok"] {
  --rdv-color: #059669;
  background: rgba(16, 185, 129, .14);
  border-left-color: #059669;
}

.operations-root .ops-rdv-card[data-kind="a_prevoir"] {
  --rdv-color: #d97706;
  background: rgba(245, 158, 11, .18);
  border-left-color: #d97706;
}

.operations-root .ops-rdv-card[data-kind="a_remplacer"] {
  --rdv-color: #dc2626;
  background: rgba(220, 38, 38, .16);
  border-left-color: #dc2626;
  animation: 1.6s ease-in-out infinite opsRdvBlink;
}

@keyframes opsRdvBlink {
  0%, 100% {
    box-shadow: inset 0 0 0 1px rgba(220, 38, 38, .3), 0 0 rgba(220, 38, 38, .45);
  }

  50% {
    box-shadow: inset 0 0 0 1px rgba(220, 38, 38, .55), 0 0 0 6px rgba(220, 38, 38, 0);
  }
}

.operations-root .ops-rdv-card[data-kind="a_remplacer"]:hover {
  animation-play-state: paused;
}

.operations-root .ops-rdv-card:hover {
  filter: brightness(.96);
  z-index: 10;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -3px rgba(15, 23, 42, .16), 0 3px 6px -2px rgba(15, 23, 42, .08);
}

.operations-root .ops-rdv-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
}

.operations-root .ops-rdv-time {
  letter-spacing: .2px;
  color: var(--rdv-color, #003da5);
  font-size: 10px;
  font-weight: 700;
}

.operations-root .ops-rdv-num {
  color: #0f172a;
  letter-spacing: .2px;
  font-family: ui-monospace, SF Mono, Menlo, Monaco, monospace;
  font-size: 10px;
  font-weight: 700;
}

.operations-root .ops-rdv-client {
  color: #0f172a;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11px;
  font-weight: 600;
  overflow: hidden;
}

.operations-root .ops-rdv-vehicule {
  color: #475569;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
  font-weight: 500;
  overflow: hidden;
}

.operations-root .ops-rdv-tech {
  color: #475569;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 500;
}

.operations-root .ops-rdv-status {
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--rdv-color, #003da5);
  font-size: 9px;
  font-weight: 700;
  position: absolute;
  bottom: 4px;
  right: 6px;
}

.operations-root .ops-planning-legend {
  color: #64748b;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 10px 4px 0;
  font-size: 11px;
  font-weight: 500;
  display: flex;
}

.operations-root .ops-planning-legend-item {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.operations-root .ops-planning-legend-dot {
  border-radius: 2px;
  width: 9px;
  height: 9px;
}

@media (max-width: 1100px) {
  .operations-root .ops-planning-header-row, .operations-root .ops-planning-body {
    min-width: 880px;
  }

  .operations-root .ops-planning-grid {
    overflow-x: auto;
  }
}

.operations-root .ops-planning-legend-dot[data-kind="a_remplacer"] {
  animation: 1.6s ease-in-out infinite opsRdvBlinkDot;
}

@keyframes opsRdvBlinkDot {
  0%, 100% {
    box-shadow: 0 0 rgba(220, 38, 38, .5);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0);
  }
}

.operations-root .ops-checklist-counts {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
  display: grid;
}

@media (max-width: 460px) {
  .operations-root .ops-checklist-counts {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-checklist-count-chip {
  transition: box-shadow .18s var(--ease-smooth);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 11px;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.operations-root .ops-checklist-count-label {
  text-align: left;
  flex: 1;
}

.operations-root .ops-checklist-count-value {
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  font-weight: 800;
}

.operations-root .ops-checklist-alert {
  color: #991b1b;
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .25);
  border-radius: 11px;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 11px 14px;
  font-size: 12.5px;
  line-height: 1.4;
  display: flex;
}

.operations-root .ops-checklist-alert svg {
  color: #dc2626;
  flex-shrink: 0;
}

.operations-root .ops-tpl-card {
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .15s var(--ease-smooth), box-shadow .15s var(--ease-smooth), transform .18s var(--ease-spring);
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  display: flex;
}

.operations-root .ops-tpl-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -8px rgba(15, 23, 42, .1), 0 4px 10px -4px rgba(15, 23, 42, .05);
}

.operations-root .ops-tpl-card-head {
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.operations-root .ops-tpl-card-icon {
  color: #6d28d9;
  background: rgba(0, 61, 165, .12);
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.operations-root .ops-tpl-card-title {
  color: #0f172a;
  letter-spacing: -.1px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.operations-root .ops-tpl-card-desc {
  color: #64748b;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 2px 0 0;
  font-size: 11.5px;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
}

.operations-root .ops-tpl-card-edit {
  border: 1px solid var(--border);
  background: var(--card);
  color: #64748b;
  cursor: pointer;
  width: 28px;
  height: 28px;
  transition: all .12s var(--ease-smooth);
  border-radius: 7px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-tpl-card-edit:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.operations-root .ops-tpl-card-stats {
  color: #475569;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
}

.operations-root .ops-tpl-card-items {
  color: #475569;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0;
  font-size: 11.5px;
  list-style: none;
  display: flex;
}

.operations-root .ops-tpl-card-items li {
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #f8fafc;
  border-radius: 6px;
  padding: 4px 8px;
  overflow: hidden;
}

.operations-root .ops-tpl-item-row {
  background: var(--card);
  align-items: center;
  gap: 8px;
  display: flex;
}

.operations-root .ops-tpl-item-handle {
  color: #cbd5e1;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  flex-shrink: 0;
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.operations-root .ops-tpl-item-num {
  color: #475569;
  font-variant-numeric: tabular-nums;
  background: #f1f5f9;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-checklist-modal {
  width: min(800px, 100vw - 32px);
}

.operations-root .ops-ck-row {
  background: var(--card);
  border: 1px solid var(--border);
  transition: border-color .15s var(--ease-smooth);
  border-radius: 12px;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px;
  list-style: none;
  display: flex;
}

.operations-root .ops-ck-row[data-status="a_prevoir"] {
  background: rgba(245, 158, 11, .04);
  border-color: rgba(245, 158, 11, .35);
}

.operations-root .ops-ck-row[data-status="a_remplacer"] {
  background: rgba(220, 38, 38, .04);
  border-color: rgba(220, 38, 38, .3);
}

.operations-root .ops-ck-row-head {
  align-items: center;
  gap: 8px;
  display: flex;
}

.operations-root .ops-ck-row-num {
  color: #475569;
  font-variant-numeric: tabular-nums;
  background: #f1f5f9;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-ck-row-statuses {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  display: grid;
}

.operations-root .ops-ck-status-btn {
  border: 1px solid var(--border);
  color: #64748b;
  cursor: pointer;
  transition: background .12s var(--ease-smooth), border-color .12s var(--ease-smooth), color .12s var(--ease-smooth), box-shadow .12s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
}

.operations-root .ops-ck-status-btn:hover {
  border-color: var(--border-hover);
}

.operations-root .ops-ck-status-btn[data-active="true"][data-kind="bon"] {
  color: #047857;
  background: rgba(16, 185, 129, .14);
  border-color: rgba(16, 185, 129, .4);
  box-shadow: 0 4px 10px -4px rgba(16, 185, 129, .4);
}

.operations-root .ops-ck-status-btn[data-active="true"][data-kind="a_prevoir"] {
  color: #b45309;
  background: rgba(245, 158, 11, .18);
  border-color: rgba(245, 158, 11, .45);
  box-shadow: 0 4px 10px -4px rgba(245, 158, 11, .45);
}

.operations-root .ops-ck-status-btn[data-active="true"][data-kind="a_remplacer"] {
  color: #991b1b;
  background: rgba(220, 38, 38, .16);
  border-color: rgba(220, 38, 38, .45);
  box-shadow: 0 4px 10px -4px rgba(220, 38, 38, .45);
}

.operations-root .ops-ck-row-extras {
  flex-flow: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.operations-root .ops-ck-row-extras > .ops-input {
  flex: 1;
  min-width: 200px;
}

.operations-root .ops-ck-photo-preview {
  border: 1px solid var(--border);
  border-radius: 9px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  position: relative;
  overflow: hidden;
}

.operations-root .ops-ck-photo-preview img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.operations-root .ops-ck-photo-remove {
  color: #fff;
  cursor: pointer;
  width: 18px;
  height: 18px;
  transition: background .12s var(--ease-smooth);
  background: rgba(15, 23, 42, .78);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: absolute;
  top: 3px;
  right: 3px;
}

.operations-root .ops-ck-photo-remove:hover {
  background: var(--color-danger);
}

.operations-root .ops-payment-recap {
  background: linear-gradient(135deg, rgba(16, 185, 129, .06), rgba(16, 185, 129, .02));
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: 12px;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  display: flex;
}

.operations-root .ops-payment-recap-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.operations-root .ops-payment-recap-label {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.operations-root .ops-payment-recap-value {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-payment-recap-divider {
  background: rgba(16, 185, 129, .2);
  height: 1px;
  margin: 4px 0;
}

.operations-root .ops-payment-recap-final .ops-payment-recap-label {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-payment-recap-final .ops-payment-recap-value {
  color: #059669;
  letter-spacing: -.4px;
  font-size: 22px;
  font-weight: 800;
}

.operations-root .ops-payment-line {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 11px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  display: flex;
}

.operations-root .ops-payment-line-num {
  color: #475569;
  font-variant-numeric: tabular-nums;
  background: #f1f5f9;
  border-radius: 6px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-payment-line-icon {
  color: #059669;
  background: rgba(16, 185, 129, .12);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.operations-root .ops-payment-validation {
  color: #b45309;
  transition: all .18s var(--ease-smooth);
  background: rgba(245, 158, 11, .08);
  border: 1px solid rgba(245, 158, 11, .2);
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
}

.operations-root .ops-payment-validation[data-ok="true"] {
  color: #047857;
  background: rgba(16, 185, 129, .1);
  border-color: rgba(16, 185, 129, .3);
}

.operations-root .ops-payment-validation-value {
  font-variant-numeric: tabular-nums;
  margin-left: auto;
  font-weight: 800;
}

.operations-root .ops-payment-validation-target {
  color: inherit;
  opacity: .7;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.operations-root .ops-payment-row {
  border: 1px solid var(--border);
  background: #fafbfc;
  border-radius: 9px;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  display: flex;
}

.operations-root .ops-cash-status-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  display: flex;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 8px -2px rgba(15, 23, 42, .04);
}

.operations-root .ops-cash-status-left {
  align-items: center;
  gap: 12px;
  display: flex;
}

.operations-root .ops-cash-status-date {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.operations-root .ops-cash-status-info {
  align-items: center;
  gap: 24px;
  display: flex;
}

.operations-root .ops-cash-status-info-item {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.operations-root .ops-cash-status-label {
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #94a3b8;
  font-size: 10.5px;
  font-weight: 600;
}

.operations-root .ops-cash-status-value {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 700;
}

.operations-root .ops-cash-status-actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.operations-root .ops-btn-violet {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%);
  box-shadow: 0 8px 18px -4px rgba(0, 61, 165, .45), 0 4px 8px -2px rgba(0, 61, 165, .25), inset 0 1px rgba(255, 255, 255, .18);
}

.operations-root .ops-counting-modal {
  width: min(720px, 100vw - 32px);
}

.operations-root .ops-counting-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  display: grid;
}

@media (max-width: 600px) {
  .operations-root .ops-counting-grid {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-counting-row {
  border: 1px solid var(--border);
  background: #fafbfc;
  border-radius: 9px;
  grid-template-columns: 90px 1fr 80px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  display: grid;
}

.operations-root .ops-counting-denom {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-counting-input {
  text-align: center;
  font-variant-numeric: tabular-nums;
  height: 32px;
  padding: 0 10px;
  font-size: 13px;
}

.operations-root .ops-counting-total {
  color: #059669;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
  font-weight: 700;
}

.operations-root .ops-counting-status {
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
}

.operations-root .ops-counting-status.is-ok {
  color: #047857;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .25);
}

.operations-root .ops-counting-status.is-warn {
  color: #b45309;
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .3);
}

.operations-root .ops-counting-recap {
  border: 1px solid var(--border);
  background: #fafbfc;
  border-radius: 11px;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  display: flex;
}

.operations-root .ops-counting-recap-row {
  color: #0f172a;
  border-bottom: 1px dashed #f1f5f9;
  grid-template-columns: 80px 60px 1fr;
  gap: 12px;
  padding: 4px 0;
  font-size: 12.5px;
  display: grid;
}

.operations-root .ops-counting-recap-row:last-child {
  border-bottom: none;
}

.operations-root .ops-counting-recap-row > span:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.operations-root .ops-form-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px 18px;
  display: flex;
}

.operations-root .ops-form-header-left {
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-form-header-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: inline-flex;
  box-shadow: 0 8px 18px -4px rgba(0, 61, 165, .4);
}

.operations-root .ops-form-title {
  color: #0f172a;
  letter-spacing: -.3px;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
}

.operations-root .ops-form-subtitle {
  color: #64748b;
  margin: 4px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
}

.operations-root .ops-form-body {
  flex-direction: column;
  flex: 1;
  gap: 18px;
  min-height: 0;
  padding: 22px 28px 24px;
  display: flex;
  overflow-y: auto;
}

.operations-root .ops-form-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 28px 16px;
  display: flex;
}

.operations-root .ops-btn-lg {
  height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.operations-root .ops-btn-primary:disabled {
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
  transform: none;
}

.operations-root .ops-tabs {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px 28px 0;
  display: grid;
}

.operations-root .ops-tab {
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s var(--ease-smooth), background .15s var(--ease-smooth), box-shadow .15s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-tab:hover {
  border-color: var(--border-hover);
  background: var(--card);
}

.operations-root .ops-tab[data-active="true"] {
  background: linear-gradient(135deg, rgba(0, 61, 165, .1) 0%, rgba(37, 99, 235, .06) 100%);
  border-color: rgba(0, 61, 165, .32);
  box-shadow: inset 0 0 0 1px rgba(0, 61, 165, .1), 0 4px 10px -4px rgba(0, 61, 165, .2);
}

.operations-root .ops-tab[data-active="true"] .ops-tab-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 10px -2px rgba(0, 61, 165, .4);
}

.operations-root .ops-tab[data-active="true"] .ops-tab-label {
  color: var(--color-primary);
}

.operations-root .ops-tab-icon {
  background: var(--card);
  border: 1px solid var(--border);
  color: #475569;
  width: 34px;
  height: 34px;
  transition: all .15s var(--ease-smooth);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.operations-root .ops-tab-text {
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-tab-label {
  color: #0f172a;
  letter-spacing: -.1px;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-tab-desc {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
}

.operations-root .ops-info-card {
  background: linear-gradient(135deg, rgba(0, 61, 165, .04) 0%, rgba(37, 99, 235, .02) 100%);
  border: 1px solid rgba(0, 61, 165, .12);
  border-radius: 14px;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  display: flex;
}

.operations-root .ops-info-card-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.operations-root .ops-info-card-label {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.operations-root .ops-info-card-value {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-recap {
  background: linear-gradient(135deg, rgba(16, 185, 129, .06) 0%, rgba(16, 185, 129, .02) 100%);
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: 14px;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  display: flex;
}

.operations-root .ops-recap-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.operations-root .ops-recap-label {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.operations-root .ops-recap-value {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-recap-divider {
  background: rgba(16, 185, 129, .2);
  height: 1px;
  margin: 2px 0;
}

.operations-root .ops-recap-final .ops-recap-label {
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-recap-final .ops-recap-value {
  color: #059669;
  letter-spacing: -.4px;
  font-size: 22px;
  font-weight: 800;
}

.operations-root .ops-recap-final .ops-recap-value svg {
  color: #10b981;
}

.operations-root .ops-history-list {
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.operations-root .ops-history-item {
  background: #f8fafc;
  border-radius: 9px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 12.5px;
  display: flex;
}

.operations-root .ops-history-dot {
  background: #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
}

.operations-root .ops-history-item[data-kind="in"] .ops-history-dot {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .18);
}

.operations-root .ops-history-item[data-kind="out"] .ops-history-dot {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, .18);
}

.operations-root .ops-history-label {
  color: #0f172a;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  font-weight: 500;
  overflow: hidden;
}

.operations-root .ops-history-date {
  color: #64748b;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
}

.operations-root .ops-form-section {
  background: #fafbfc;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  min-width: 0;
  margin: 0;
  padding: 16px 18px 18px;
}

.operations-root .ops-form-section-title {
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #475569;
  margin: 0 0 14px;
  padding: 0;
  font-size: 11px;
  font-weight: 700;
}

.operations-root .ops-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

.operations-root .ops-field-full {
  grid-column: 1 / -1;
}

@media (max-width: 520px) {
  .operations-root .ops-form-grid {
    grid-template-columns: 1fr;
  }

  .operations-root .ops-field-full {
    grid-column: auto;
  }
}

.operations-root .ops-secform-head {
  border-bottom: 1px solid #e5e7eb;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  display: flex;
}

.operations-root .ops-secform-head-main {
  flex: auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-secform-head-text {
  flex: 1;
  min-width: 0;
}

.operations-root .ops-secform-head-action {
  flex-shrink: 0;
}

.operations-root .ops-clientform-grid {
  gap: 12px;
  display: grid;
}

.operations-root .ops-clientform-grid--identity {
  grid-template-columns: minmax(0, 110px) minmax(0, 1fr) minmax(0, 1fr);
}

.operations-root .ops-clientform-grid--2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.operations-root .ops-clientform-grid--cpville {
  grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
}

@media (max-width: 640px) {
  .operations-root .ops-secform-head-main {
    flex: 100%;
  }

  .operations-root .ops-secform-head-action {
    flex: 100%;
    margin-top: 10px;
  }

  .operations-root .ops-secform-head-action > * {
    justify-content: center;
    width: 100%;
  }

  .operations-root .ops-clientform-grid--identity, .operations-root .ops-clientform-grid--2 {
    grid-template-columns: 1fr;
  }

  .operations-root .ops-clientform-grid--cpville {
    grid-template-columns: minmax(0, 96px) minmax(0, 1fr);
  }
}

.operations-root .ops-field {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.operations-root .ops-field-label {
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #475569;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.operations-root .ops-field-required {
  color: var(--color-primary);
  margin-top: -2px;
  font-size: 14px;
  line-height: 0;
}

.operations-root .ops-field-error {
  color: var(--color-danger);
  margin-top: 5px;
  font-size: 11px;
  font-weight: 500;
}

.operations-root .ops-input {
  border: 1px solid var(--border);
  color: #0f172a;
  width: 100%;
  height: 44px;
  transition: all .15s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 11px;
  outline: none;
  padding: 0 14px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: inset 0 1px rgba(15, 23, 42, .02);
}

.operations-root .ops-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.operations-root .ops-input:hover:not(:focus):not(.is-error) {
  border-color: var(--border-hover);
  background: var(--card);
}

.operations-root .ops-input:focus {
  background: var(--card);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 61, 165, .1), inset 0 1px rgba(15, 23, 42, .02);
}

.operations-root .ops-input.is-error {
  border-color: var(--color-danger);
  background: rgba(239, 68, 68, .03);
}

.operations-root .ops-input.is-error:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
}

.operations-root .ops-select-wrap {
  position: relative;
}

.operations-root .ops-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 38px;
}

.operations-root .ops-select-chevron {
  color: #64748b;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.operations-root .ops-form-checks {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.operations-root .ops-checkbox {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: background .12s var(--ease-smooth);
  border-radius: 10px;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  display: flex;
}

.operations-root .ops-checkbox:hover {
  background: rgba(0, 61, 165, .04);
}

.operations-root .ops-checkbox input[type="checkbox"] {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  position: absolute;
}

.operations-root .ops-checkbox-box {
  background: var(--card);
  width: 20px;
  height: 20px;
  transition: all .15s var(--ease-smooth);
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}

.operations-root .ops-checkbox[data-checked="true"] .ops-checkbox-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px -2px rgba(0, 61, 165, .4);
}

.operations-root .ops-checkbox[data-checked="true"] .ops-checkbox-box:after {
  content: "";
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 10px;
  position: absolute;
  top: 2px;
  left: 6px;
  transform: rotate(45deg);
}

.operations-root .ops-checkbox-text {
  flex-direction: column;
  flex: 1;
  gap: 1px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-checkbox-label {
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
}

.operations-root .ops-checkbox-desc {
  color: #64748b;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.4;
}

.operations-root .ops-form-submit {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  letter-spacing: .1px;
  cursor: pointer;
  width: 100%;
  height: 48px;
  transition: all .15s var(--ease-smooth);
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  box-shadow: 0 8px 18px -4px rgba(0, 61, 165, .45), 0 4px 8px -2px rgba(0, 61, 165, .25), inset 0 1px rgba(255, 255, 255, .18);
}

.operations-root .ops-form-submit:hover:not(:disabled) {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -4px rgba(0, 61, 165, .55), 0 6px 12px -2px rgba(0, 61, 165, .3), inset 0 1px rgba(255, 255, 255, .2);
}

.operations-root .ops-form-submit:active:not(:disabled) {
  transform: translateY(0);
}

.operations-root .ops-form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.operations-root .ops-clients {
  animation: opsFadeUp .5s var(--ease-smooth) both;
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.operations-root .ops-clients-hero {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.operations-root .ops-clients-hero-left {
  align-items: center;
  gap: 14px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-clients-hero-icon {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: inline-flex;
  box-shadow: 0 8px 18px -4px rgba(0, 61, 165, .4);
}

.operations-root .ops-clients-title {
  letter-spacing: -.4px;
  color: #0f172a;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.operations-root .ops-clients-subtitle {
  color: #64748b;
  margin-top: 2px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.5;
}

.operations-root .ops-clients-hero-actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.operations-root .ops-btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
  cursor: pointer;
  height: 38px;
  transition: all .15s var(--ease-smooth);
  white-space: nowrap;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  box-shadow: 0 6px 14px -3px rgba(0, 61, 165, .4), 0 2px 4px -1px rgba(0, 61, 165, .2), inset 0 1px rgba(255, 255, 255, .18);
}

.operations-root .ops-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -4px rgba(0, 61, 165, .5), 0 4px 8px -2px rgba(0, 61, 165, .25), inset 0 1px rgba(255, 255, 255, .2);
}

.operations-root .ops-btn-primary:active {
  transform: translateY(0);
}

.operations-root .ops-btn-secondary {
  background: var(--card);
  color: #1f2937;
  border: 1px solid var(--border);
  cursor: pointer;
  height: 38px;
  transition: all .15s var(--ease-smooth);
  white-space: nowrap;
  border-radius: 10px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.operations-root .ops-btn-secondary:hover {
  border-color: var(--border-hover);
  color: #0f172a;
  background: #f8fafc;
}

.operations-root .ops-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  display: grid;
}

@media (max-width: 1100px) {
  .operations-root .ops-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .operations-root .ops-stats-grid {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-stats-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.operations-root .ops-stats-grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.operations-root .ops-stats-grid-6 .ops-stat-card {
  padding: 12px;
}

.operations-root .ops-stats-grid-6 .ops-stat-card-value {
  font-size: 18px;
}

.operations-root .ops-stats-grid-6 .ops-stat-card-label, .operations-root .ops-stats-grid-6 .ops-stat-card-hint {
  font-size: 10.5px;
}

@media (max-width: 1280px) {
  .operations-root .ops-stats-grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .operations-root .ops-stats-grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .operations-root .ops-stats-grid-6 {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-stats-grid-5 .ops-stat-card {
  padding: 14px;
}

.operations-root .ops-stats-grid-5 .ops-stat-card-value {
  font-size: 20px;
}

.operations-root .ops-stats-grid-5 .ops-stat-card-label {
  font-size: 10.5px;
}

@media (max-width: 1280px) {
  .operations-root .ops-stats-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .operations-root .ops-stats-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .operations-root .ops-stats-grid-5 {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  transition: all .15s var(--ease-smooth);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 8px -2px rgba(15, 23, 42, .04);
}

.operations-root .ops-stat-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 6px 14px -4px rgba(15, 23, 42, .1), 0 3px 6px -2px rgba(15, 23, 42, .06);
}

.operations-root .ops-stat-card-top {
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  display: flex;
}

.operations-root .ops-stat-card-label {
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
}

.operations-root .ops-stat-card-icon {
  border-radius: 7px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: inline-flex;
}

.operations-root .ops-stat-card-value {
  letter-spacing: -.5px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.operations-root .ops-stat-card-hint {
  color: #64748b;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  display: inline-flex;
}

.operations-root .ops-filters {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .03);
}

.operations-root .ops-filter-search {
  flex: 1;
  min-width: 240px;
  position: relative;
}

.operations-root .ops-filter-search svg {
  color: #94a3b8;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}

.operations-root .ops-filter-search input {
  color: #0f172a;
  width: 100%;
  height: 36px;
  transition: all .15s var(--ease-smooth);
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 9px;
  outline: none;
  padding: 0 12px 0 34px;
  font-family: inherit;
  font-size: 12.5px;
}

.operations-root .ops-filter-search input::placeholder {
  color: #94a3b8;
}

.operations-root .ops-filter-search input:focus {
  background: var(--card);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, .1);
}

.operations-root .ops-filter-select-wrap {
  position: relative;
}

.operations-root .ops-filter-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--border);
  color: #0f172a;
  cursor: pointer;
  height: 36px;
  transition: all .15s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 9px;
  outline: none;
  min-width: 150px;
  padding: 0 32px 0 12px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
}

.operations-root .ops-filter-select:hover {
  border-color: var(--border-hover);
}

.operations-root .ops-filter-select:focus {
  border-color: var(--color-primary);
  background: var(--card);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, .1);
}

.operations-root .ops-filter-chev {
  color: #64748b;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.operations-root .ops-filter-count {
  color: #64748b;
  white-space: nowrap;
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
}

.operations-root .ops-table-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 8px -2px rgba(15, 23, 42, .04);
}

.operations-root .ops-table-wrap::-webkit-scrollbar {
  height: 8px;
}

.operations-root .ops-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.operations-root .ops-table thead {
  border-bottom: 1px solid var(--border);
  background: #fafbfc;
}

.operations-root .ops-table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #64748b;
  white-space: nowrap;
  padding: 12px 18px;
  font-size: 10.5px;
  font-weight: 700;
}

.operations-root .ops-table th.num {
  text-align: right;
}

.operations-root .ops-table tbody tr {
  transition: background .12s var(--ease-smooth);
  border-bottom: 1px solid #f1f5f9;
}

.operations-root .ops-table tbody tr:last-child {
  border-bottom: none;
}

.operations-root .ops-table-row {
  cursor: pointer;
}

.operations-root .ops-table-row:hover {
  background: #f8fafc;
}

.operations-root .ops-table-row:focus-visible {
  box-shadow: inset 3px 0 0 var(--color-primary);
  background: rgba(0, 61, 165, .04);
  outline: none;
}

.operations-root .ops-table td {
  vertical-align: middle;
  white-space: nowrap;
  padding: 14px 18px;
}

.operations-root .ops-table td.num {
  text-align: right;
}

.operations-root .ops-cell-name {
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-avatar-circle {
  color: #fff;
  letter-spacing: .3px;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-cell-name-text {
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-cell-name-main {
  color: #0f172a;
  letter-spacing: -.1px;
  font-size: 13.5px;
  font-weight: 700;
}

.operations-root .ops-status-badge {
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: 999px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 18px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.operations-root .ops-cell-muted {
  color: #475569;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
}

.operations-root .ops-cell-muted svg {
  color: #94a3b8;
  flex-shrink: 0;
}

.operations-root .ops-cell-email {
  text-overflow: ellipsis;
  max-width: 220px;
  overflow: hidden;
}

.operations-root .ops-cell-num {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-cell-ca {
  color: #059669;
}

.operations-root .ops-empty {
  color: #64748b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 48px 24px;
  font-size: 13px;
  display: flex;
}

.operations-root .ops-empty svg {
  color: #cbd5e1;
}

.operations-root .ops-table-empty td {
  padding: 0;
}

@media (max-width: 1100px) {
  .operations-root .ops-table-wrap {
    overflow-x: auto;
  }

  .operations-root .ops-table {
    min-width: 880px;
  }
}

.operations-root .ops-twocol {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 16px;
  display: grid;
}

.operations-root .ops-twocol > * {
  min-width: 0;
}

.operations-root .ops-twocol .ops-table-wrap {
  overflow-x: auto;
}

.operations-root .ops-twocol .ops-table thead {
  z-index: 5;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.operations-root .ops-preview-col {
  min-width: 0;
}

@media (max-width: 1100px) {
  .operations-root .ops-twocol {
    grid-template-columns: minmax(0, 1fr);
  }

  .operations-root .ops-preview-col {
    display: none;
  }

  .operations-root .ops-twocol .ops-table-wrap {
    overflow-x: auto;
  }
}

.operations-root .ops-categorie-chip {
  color: #475569;
  letter-spacing: .1px;
  white-space: nowrap;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
}

.operations-root .ops-stock-row {
  transition: background .12s var(--ease-smooth);
}

.operations-root .ops-stock-row:hover {
  background: #f8fafc;
}

.operations-root .ops-header-right {
  align-items: center;
  gap: 10px;
  display: flex;
}

.operations-root .ops-header-actions {
  border-right: 1px solid var(--border);
  align-items: center;
  gap: 8px;
  margin-right: 4px;
  padding-right: 6px;
  display: inline-flex;
}

.operations-root .ops-header-action {
  letter-spacing: -.1px;
  cursor: pointer;
  color: #0f172a;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  font-size: 12.5px;
  font-weight: 600;
  transition: background .15s, border-color .15s, box-shadow .15s, transform 80ms;
  display: inline-flex;
}

.operations-root .ops-header-action:hover {
  border-color: var(--border-hover);
  background: #f8fafc;
}

.operations-root .ops-header-action:active {
  transform: translateY(.5px);
}

.operations-root .ops-header-action[data-variant="primary"] {
  color: #fff;
  background: linear-gradient(135deg, #0050c8 0%, #003da5 100%);
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0 4px 12px -4px rgba(37, 99, 235, .5);
}

.operations-root .ops-header-action[data-variant="primary"]:hover {
  background: linear-gradient(135deg, #60a5fa 0%, #0050c8 100%);
  box-shadow: 0 6px 16px -4px rgba(37, 99, 235, .55);
}

.operations-root .ops-icon-btn {
  border: 1px solid var(--border);
  cursor: pointer;
  color: #0f172a;
  width: 40px;
  height: 40px;
  transition: all .15s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 11px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.operations-root .ops-icon-btn:hover {
  border-color: var(--border-hover);
}

.operations-root .ops-icon-btn[data-open="true"] {
  background: #eef2ff;
  border-color: rgba(0, 61, 165, .3);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, .08);
}

.operations-root .ops-icon-btn-badge {
  background: var(--color-danger);
  color: #fff;
  border: 2px solid var(--card);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: 4px;
  right: 4px;
}

.operations-root .ops-profile-btn {
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .15s var(--ease-smooth);
  background: #f8fafc;
  border-radius: 12px;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 5px;
  display: flex;
}

.operations-root .ops-profile-btn:hover {
  border-color: var(--border-hover);
}

.operations-root .ops-profile-btn[data-open="true"] {
  background: #eef2ff;
  border-color: rgba(0, 61, 165, .3);
  box-shadow: 0 0 0 3px rgba(0, 61, 165, .08);
}

.operations-root .ops-avatar {
  color: #fff;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 3px 8px rgba(6, 182, 212, .3);
}

.operations-root .ops-profile-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  display: flex;
}

.operations-root .ops-popover {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 40;
  animation: opsDropdownIn .16s var(--ease-spring);
  border-radius: 14px;
  padding: 6px;
  position: absolute;
  top: calc(100% + 8px);
}

.operations-root .ops-popover-label {
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 8px 10px 6px;
  font-size: 10.5px;
  font-weight: 700;
}

.operations-root .ops-popover-item {
  width: 100%;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  transition: background .12s var(--ease-smooth);
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding: 8px 10px;
  display: flex;
}

.operations-root .ops-popover-item:hover {
  background: #f1f5f9;
}

.operations-root .ops-popover-item[data-active="true"] {
  background: #eef2ff;
}

.operations-root .ops-popover-icon {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.operations-root .ops-notif-item {
  cursor: pointer;
  transition: background .12s var(--ease-smooth);
  border-radius: 10px;
  padding: 10px 12px;
}

.operations-root .ops-notif-item:hover {
  background: #f1f5f9;
}

.operations-root .ops-menu-item {
  width: 100%;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  transition: background .12s var(--ease-smooth);
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.operations-root .ops-menu-item:hover {
  background: #f1f5f9;
}

.operations-root .ops-mobile-nav-btn {
  border: 1px solid var(--border);
  cursor: pointer;
  color: #0f172a;
  background: #f8fafc;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: none;
}

.operations-root .ops-mobile-nav-drawer {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  z-index: 25;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px 16px;
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 64px;
}

.operations-root .ops-mobile-nav-link {
  color: #475569;
  transition: all .12s var(--ease-smooth);
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.operations-root .ops-mobile-nav-link:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.operations-root .ops-mobile-nav-link[data-active="true"] {
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(0, 61, 165, .1) 0%, rgba(37, 99, 235, .08) 100%);
  font-weight: 600;
}

.operations-root .ops-home-hero {
  text-align: center;
  min-height: 60vh;
  animation: opsFadeUp .5s var(--ease-smooth) both;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  display: flex;
}

.operations-root .ops-home-title {
  letter-spacing: -.8px;
  color: #0f172a;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

.operations-root .ops-home-subtitle {
  color: #64748b;
  max-width: 520px;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .operations-root .ops-profile-text {
    display: none;
  }

  .operations-root .ops-profile-btn {
    padding: 5px;
  }
}

@media (max-width: 760px) {
  .operations-root .ops-header {
    gap: 16px;
    height: 80px;
    padding: 0 18px;
  }

  .operations-root .ops-main-nav {
    gap: 8px;
  }

  .operations-root .ops-nav-link {
    gap: 3px;
    min-width: 76px;
    padding: 8px 12px 6px;
  }

  .operations-root .ops-nav-icon {
    width: 34px;
    height: 34px;
  }

  .operations-root .ops-nav-label {
    margin-top: 2px;
    font-size: 11.5px;
  }

  .operations-root .ops-home-title {
    font-size: 26px;
  }

  .operations-root .ops-home-subtitle {
    font-size: 13.5px;
  }
}

@media (max-width: 640px) {
  .operations-root .ops-header {
    gap: 6px;
    height: 56px;
    padding: 0 8px;
  }

  .operations-root .ops-main-nav {
    justify-content: flex-start;
    gap: 2px;
  }

  .operations-root .ops-nav-link {
    min-width: 0;
    padding: 4px 6px;
  }

  .operations-root .ops-nav-icon {
    width: 30px;
    height: 30px;
  }

  .operations-root .ops-nav-label {
    display: none;
  }

  .operations-root .ops-header-right {
    gap: 6px;
  }
}

.operations-root .ops-nav-item {
  width: 44px;
  height: 44px;
  color: var(--muted-foreground);
  transition: all .18s var(--ease-smooth);
  border-radius: 10px;
  outline: none;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  position: relative;
}

.operations-root .ops-nav-item:hover {
  background: var(--muted);
  color: var(--color-primary);
}

.operations-root .ops-nav-item[data-active="true"] {
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(0, 61, 165, .14) 0%, rgba(37, 99, 235, .1) 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 61, 165, .12), 0 6px 14px -6px rgba(0, 61, 165, .3);
}

.operations-root .ops-nav-item[data-active="true"]:before {
  content: "";
  background: var(--color-primary);
  border-radius: 0 4px 4px 0;
  width: 3px;
  height: 26px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
}

.operations-root .ops-nav-item[data-active="true"]:after {
  content: "";
  background: var(--color-primary);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 6px;
  right: 6px;
  box-shadow: 0 0 0 2px rgba(0, 61, 165, .18);
}

.operations-root .ops-nav-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.operations-root .ops-nav-tooltip {
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  z-index: 50;
  background: #0f172a;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  transition: opacity .15s, transform .15s;
  position: absolute;
  top: 50%;
  left: calc(100% + 12px);
  transform: translateY(-50%);
  box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
}

.operations-root .ops-nav-tooltip:before {
  content: "";
  border: 4px solid rgba(0, 0, 0, 0);
  border-right-color: #0f172a;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
}

.operations-root .ops-nav-item:hover .ops-nav-tooltip {
  opacity: 1;
  transform: translateY(-50%)translateX(2px);
}

.operations-root .ops-nav-item:focus-visible .ops-nav-tooltip {
  opacity: 1;
  transform: translateY(-50%)translateX(2px);
}

@media (max-width: 768px) {
  .operations-root .ops-nav-tooltip {
    display: none;
  }
}

@keyframes opsDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-4px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes opsFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.operations-root .ops-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s var(--ease-smooth), box-shadow .18s var(--ease-smooth), transform .18s var(--ease-smooth);
  border-radius: 16px;
}

.operations-root .ops-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}

.operations-root .ops-action-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  display: grid;
}

@media (max-width: 1180px) {
  .operations-root .ops-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .operations-root .ops-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 420px) {
  .operations-root .ops-action-grid {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-action-card {
  background: var(--card);
  border: 1px solid var(--border);
  color: #0f172a;
  cursor: pointer;
  isolation: isolate;
  height: 152px;
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1), box-shadow .22s var(--ease-smooth), border-color .22s var(--ease-smooth);
  animation: opsFadeUp .45s var(--ease-smooth) both;
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 18px 16px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 8px -2px rgba(15, 23, 42, .04);
}

.operations-root .ops-action-card .ops-action-bar {
  background: linear-gradient(90deg, var(--acc-bar-from), var(--acc-bar-to));
  opacity: 0;
  height: 3px;
  transition: opacity .22s var(--ease-smooth);
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.operations-root .ops-action-card .ops-action-glow {
  background: radial-gradient(circle at center, var(--acc-glow), transparent 70%);
  opacity: .55;
  pointer-events: none;
  width: 110px;
  height: 110px;
  transition: opacity .25s var(--ease-smooth), transform .25s var(--ease-smooth);
  z-index: 0;
  position: absolute;
  top: -28px;
  right: -28px;
}

.operations-root .ops-action-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px)scale(1.025);
  box-shadow: 0 18px 36px -10px rgba(15, 23, 42, .14), 0 8px 16px -6px rgba(15, 23, 42, .08);
}

.operations-root .ops-action-card:hover .ops-action-bar {
  opacity: 1;
}

.operations-root .ops-action-card:hover .ops-action-glow {
  opacity: .85;
  transform: scale(1.18);
}

.operations-root .ops-action-card:hover .ops-action-icon {
  box-shadow: 0 8px 18px -4px var(--acc-glow);
  transform: scale(1.06);
}

.operations-root .ops-action-card:active {
  transform: translateY(-2px)scale(1.01);
}

.operations-root .ops-action-card:focus-visible {
  outline: 2px solid var(--acc-icon);
  outline-offset: 3px;
}

.operations-root .ops-action-icon {
  z-index: 2;
  background: var(--acc-bg);
  width: 48px;
  height: 48px;
  color: var(--acc-icon);
  transition: transform .22s cubic-bezier(.34, 1.56, .64, 1), box-shadow .22s var(--ease-smooth);
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: relative;
}

.operations-root .ops-action-meta {
  z-index: 2;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  display: flex;
  position: relative;
}

.operations-root .ops-action-label {
  letter-spacing: -.2px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.operations-root .ops-action-desc {
  color: #64748b;
  font-size: 11.5px;
  line-height: 1.35;
}

@keyframes opsShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.operations-root .ops-table-row {
  transition: background-color .18s, transform .15s, box-shadow .18s;
}

.operations-root .ops-table-row:hover:not([style*="pointer-events: none"]) {
  background-color: #fafbfc;
  transform: translateX(2px);
}

.operations-root .ops-table-row:focus-visible {
  outline-offset: -2px;
  outline: 2px solid #003da5;
}

.operations-root .ops-stat-card {
  cursor: default;
  transition: transform .15s, box-shadow .18s;
}

.operations-root .ops-page-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 20px;
  display: grid;
}

@media (max-width: 1280px) {
  .operations-root .ops-page-layout {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-page-main {
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-page-aside {
  flex-direction: column;
  gap: 14px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
}

.operations-root .ops-aside-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 8px -2px rgba(15, 23, 42, .04);
}

.operations-root .ops-aside-title {
  letter-spacing: .06em;
  color: #6b7280;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
}

.operations-root .ops-aside-actions {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.operations-root .ops-quick-action {
  cursor: pointer;
  width: 100%;
  height: 40px;
  transition: all .15s var(--ease-smooth);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.operations-root .ops-quick-action--primary {
  color: #fff;
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border: none;
  box-shadow: 0 6px 14px -4px rgba(6, 182, 212, .4), inset 0 1px rgba(255, 255, 255, .2);
}

.operations-root .ops-quick-action--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.operations-root .ops-quick-action--ghost {
  color: #1f2937;
  border-color: var(--border);
  background: #fff;
}

.operations-root .ops-quick-action--ghost:hover {
  border-color: var(--border-hover);
  background: #f8fafc;
}

.operations-root .ops-aside-alerts {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.operations-root .ops-alert-card {
  cursor: pointer;
  transition: all .15s var(--ease-smooth);
  text-align: left;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 13px;
  font-family: inherit;
  display: flex;
}

.operations-root .ops-alert-card:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.operations-root .ops-alert-card-icon {
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: inline-flex;
}

.operations-root .ops-alert-card-text {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-alert-card-value {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
}

.operations-root .ops-alert-card-label {
  color: #64748b;
  font-size: 11.5px;
  line-height: 1.2;
}

.operations-root .ops-donut {
  align-items: center;
  gap: 14px;
  display: flex;
}

.operations-root .ops-donut-svg {
  flex-shrink: 0;
}

.operations-root .ops-donut-legend {
  flex-direction: column;
  flex: 1;
  gap: 6px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-donut-legend-row {
  color: #475569;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.2;
  display: flex;
}

.operations-root .ops-donut-legend-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.operations-root .ops-donut-legend-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  overflow: hidden;
}

.operations-root .ops-donut-legend-value {
  color: #0f172a;
  font-weight: 700;
}

.operations-root .ops-stat-spark {
  width: 100%;
  height: 28px;
  margin-top: 10px;
  display: block;
}

.operations-root .ops-activite-board {
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  display: grid;
}

@media (max-width: 1100px) {
  .operations-root .ops-activite-board {
    grid-template-columns: 1fr;
  }
}

.operations-root .ops-board-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  flex-direction: column;
  gap: 16px;
  padding: 18px 18px 14px;
  display: flex;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 10px -4px rgba(15, 23, 42, .05);
}

.operations-root .ops-board-card-head {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.operations-root .ops-board-card-title {
  align-items: center;
  gap: 11px;
  min-width: 0;
  display: flex;
}

.operations-root .ops-board-card-icon {
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: inline-flex;
}

.operations-root .ops-board-card-name {
  color: #0f172a;
  letter-spacing: -.2px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.operations-root .ops-board-card-sub {
  color: #64748b;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 500;
  display: block;
}

.operations-root .ops-board-filter {
  flex-shrink: 0;
  position: relative;
}

.operations-root .ops-board-filter > select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #334155;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  height: 34px;
  padding: 0 30px 0 14px;
  font-size: 12px;
  font-weight: 600;
  transition: border-color .15s, box-shadow .15s;
}

.operations-root .ops-board-filter > select:hover, .operations-root .ops-board-filter > select:focus {
  border-color: #cbd5e1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .08);
}

.operations-root .ops-board-filter > svg {
  pointer-events: none;
  color: #64748b;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.operations-root .ops-board-empty {
  color: #94a3b8;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 16px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.operations-root .ops-board-empty > svg {
  color: #cbd5e1;
}

.operations-root .ops-timeline {
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.operations-root .ops-timeline-day {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.operations-root .ops-timeline-day-label {
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  display: flex;
}

.operations-root .ops-timeline-day-name {
  color: #334155;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  font-weight: 700;
}

.operations-root .ops-timeline-day-count {
  color: #94a3b8;
  font-size: 10.5px;
  font-weight: 500;
}

.operations-root .ops-timeline-rows {
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.operations-root .ops-timeline-row {
  color: inherit;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 10px;
  grid-template-columns: 44px 32px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
  display: grid;
}

.operations-root .ops-timeline-row:hover {
  background: #fff;
  border-color: #e5e7eb;
  transform: translateX(2px);
  box-shadow: 0 4px 10px -6px rgba(15, 23, 42, .08);
}

.operations-root .ops-timeline-row-time {
  font-variant-numeric: tabular-nums;
  color: #64748b;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
}

.operations-root .ops-timeline-row-avatar {
  border-radius: 9px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
}

.operations-root .ops-timeline-row-text {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.operations-root .ops-timeline-row-title {
  color: #0f172a;
  letter-spacing: -.1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.operations-root .ops-timeline-row-subtitle {
  color: #64748b;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 1px;
  font-size: 11.5px;
  font-weight: 500;
  overflow: hidden;
}

.operations-root .ops-timeline-row-amount {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.2px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-timeline-row-chev {
  color: #cbd5e1;
  flex-shrink: 0;
  transition: color .15s, transform .15s;
}

.operations-root .ops-timeline-row:hover .ops-timeline-row-chev {
  color: #64748b;
  transform: translateX(2px);
}

.operations-root .ops-activite-rail {
  flex-direction: column;
  gap: 14px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 18px;
}

@media (max-width: 1100px) {
  .operations-root .ops-activite-rail {
    position: static;
  }
}

.operations-root .ops-rail-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  padding: 14px 14px 12px;
  display: flex;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 10px -4px rgba(15, 23, 42, .05);
}

.operations-root .ops-rail-card-head {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.operations-root .ops-rail-card-title {
  align-items: center;
  gap: 9px;
  display: flex;
}

.operations-root .ops-rail-card-icon {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: inline-flex;
  box-shadow: 0 4px 10px -4px rgba(15, 23, 42, .18);
}

.operations-root .ops-rail-card-title h3 {
  color: #0f172a;
  letter-spacing: -.1px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.operations-root .ops-rail-card-link {
  color: #475569;
  background: #f1f5f9;
  border-radius: 999px;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  font-size: 10.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
  display: inline-flex;
}

.operations-root .ops-rail-card-link:hover {
  color: #0f172a;
  background: #e2e8f0;
  transform: translateX(2px);
}

.operations-root .ops-rail-bigstat {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.operations-root .ops-rail-bigstat-label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  font-weight: 600;
}

.operations-root .ops-rail-bigstat-value {
  color: #0f172a;
  letter-spacing: -.4px;
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.operations-root .ops-rail-progress {
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  display: flex;
}

.operations-root .ops-rail-progress-track {
  background: #f1f5f9;
  border-radius: 999px;
  width: 100%;
  height: 6px;
  overflow: hidden;
}

.operations-root .ops-rail-progress-fill {
  border-radius: 999px;
  height: 100%;
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
}

.operations-root .ops-rail-progress-text {
  color: #64748b;
  font-size: 10.5px;
  font-weight: 500;
}

.operations-root .ops-rail-ministats {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: grid;
}

.operations-root .ops-rail-ministat {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  display: flex;
}

.operations-root .ops-rail-ministat-icon {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: inline-flex;
}

.operations-root .ops-rail-ministat-text {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.operations-root .ops-rail-ministat-label {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 10px;
  font-weight: 600;
}

.operations-root .ops-rail-ministat-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.2px;
  margin-top: 1px;
  font-size: 13.5px;
  font-weight: 800;
}

.operations-root .ops-rail-techgrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  display: grid;
}

.operations-root .ops-rail-techcell {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-top: 2px solid;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 11px 10px 10px;
  display: flex;
}

.operations-root .ops-rail-techcell-icon {
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
  display: inline-flex;
}

.operations-root .ops-rail-techcell-value {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.3px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.operations-root .ops-rail-techcell-label {
  color: #334155;
  letter-spacing: .02em;
  margin-top: 2px;
  font-size: 10.5px;
  font-weight: 700;
}

.operations-root .ops-rail-techcell-hint {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 500;
}

.operations-root .ops-rail-empty {
  color: #94a3b8;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 8px;
  font-size: 11.5px;
  font-weight: 500;
  display: flex;
}

.operations-root .ops-rail-toplist {
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.operations-root .ops-rail-toprow {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 9px;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  display: grid;
}

.operations-root .ops-rail-toprank {
  font-variant-numeric: tabular-nums;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
}

.operations-root .ops-rail-topinfo {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.operations-root .ops-rail-topname {
  color: #0f172a;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 600;
  overflow: hidden;
}

.operations-root .ops-rail-topmeta {
  color: #64748b;
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 500;
}

.operations-root .ops-rail-topamount {
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 700;
}

.operations-root .ops-rail-shortcuts {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.operations-root .ops-rail-shortcut {
  color: inherit;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 9px;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  text-decoration: none;
  transition: background .15s, border-color .15s, transform .15s;
  display: grid;
}

.operations-root .ops-rail-shortcut:hover {
  background: #fff;
  border-color: #cbd5e1;
  transform: translateX(2px);
  box-shadow: 0 4px 8px -4px rgba(15, 23, 42, .08);
}

.operations-root .ops-rail-shortcut-icon {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: inline-flex;
}

.operations-root .ops-rail-shortcut-text {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.operations-root .ops-rail-shortcut-label {
  color: #0f172a;
  letter-spacing: -.1px;
  font-size: 12.5px;
  font-weight: 600;
}

.operations-root .ops-rail-shortcut-hint {
  color: #64748b;
  margin-top: 1px;
  font-size: 10.5px;
  font-weight: 500;
}

.operations-root .ops-rail-shortcut-chev {
  color: #cbd5e1;
  transition: color .15s, transform .15s;
}

.operations-root .ops-rail-shortcut:hover .ops-rail-shortcut-chev {
  color: #64748b;
  transform: translateX(2px);
}

.operations-root .ops-twocol .ops-table th {
  padding: 11px 10px;
}

.operations-root .ops-twocol .ops-table td {
  padding: 12px 10px;
  font-size: 12.5px;
}

.operations-root .ops-twocol .ops-table th:first-child, .operations-root .ops-twocol .ops-table td:first-child {
  padding-left: 14px;
}

.operations-root .ops-twocol .ops-table th:last-child, .operations-root .ops-twocol .ops-table td:last-child {
  padding-right: 14px;
}

.operations-root .ops-twocol .ops-cell-name-main {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 190px;
  display: block;
  overflow: hidden;
}

@keyframes ops-pulse-retard {
  0%, 100% {
    box-shadow: 0 0 rgba(217, 119, 6, 0);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(217, 119, 6, .42);
  }
}

@keyframes ops-pulse-siren {
  0%, 100% {
    box-shadow: 0 0 rgba(220, 38, 38, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(220, 38, 38, .55);
  }
}

.operations-root .ops-blink-retard {
  animation: 1.3s ease-in-out infinite ops-pulse-retard;
}

.operations-root .ops-blink-siren {
  animation: .85s ease-in-out infinite ops-pulse-siren;
  border-color: #dc2626 !important;
}

@keyframes ops-spin {
  to {
    transform: rotate(360deg);
  }
}

.operations-root .ops-siren-spin {
  transform-origin: center;
  animation: 1.1s linear infinite ops-spin;
  display: inline-block;
}

@keyframes ops-pulse-pieces {
  0%, 100% {
    box-shadow: 0 0 rgba(217, 119, 6, 0);
  }

  50% {
    box-shadow: 0 0 0 4px rgba(217, 119, 6, .45);
  }
}

@keyframes ops-pulse-ct {
  0%, 100% {
    box-shadow: 0 0 rgba(220, 38, 38, 0);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(220, 38, 38, .55);
  }
}

@keyframes ops-gyro-orange {
  0%, 100% {
    background: #d97706;
    box-shadow: 0 0 rgba(217, 119, 6, .75), 0 0 6px 1px rgba(217, 119, 6, .55);
  }

  50% {
    background: #f59e0b;
    box-shadow: 0 0 0 7px rgba(217, 119, 6, 0), 0 0 18px 5px rgba(217, 119, 6, .95);
  }
}

@keyframes ops-gyro-red {
  0%, 100% {
    background: #dc2626;
    box-shadow: 0 0 rgba(220, 38, 38, .8), 0 0 6px 1px rgba(220, 38, 38, .6);
  }

  50% {
    background: #ef4444;
    box-shadow: 0 0 0 7px rgba(220, 38, 38, 0), 0 0 20px 6px #dc2626;
  }
}

.operations-root .ops-gyro {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.operations-root .ops-gyro svg {
  transform-origin: center;
  animation: .9s linear infinite ops-spin;
}

@keyframes ops-cardflash-orange {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(217, 119, 6, .3);
  }

  50% {
    box-shadow: 0 0 0 3px rgba(217, 119, 6, .85), 0 0 14px 2px rgba(217, 119, 6, .5);
  }
}

@keyframes ops-cardflash-red {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(220, 38, 38, .35);
  }

  50% {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .92), 0 0 18px 3px rgba(220, 38, 38, .6);
  }
}

.operations-root .ops-gyro {
  width: 24px;
  height: 24px;
}

@keyframes ops-gyro-police {
  0%, 49.9% {
    background: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, .5), 0 0 16px 5px rgba(220, 38, 38, .95);
  }

  50%, 100% {
    background: #1d4ed8;
    box-shadow: 0 0 0 2px rgba(29, 78, 216, .5), 0 0 16px 5px rgba(29, 78, 216, .95);
  }
}

@keyframes ops-gyro-amber2 {
  0%, 100% {
    background: #d97706;
    box-shadow: 0 0 rgba(217, 119, 6, .6), 0 0 8px 2px rgba(217, 119, 6, .6);
  }

  50% {
    background: #f59e0b;
    box-shadow: 0 0 0 8px rgba(217, 119, 6, 0), 0 0 20px 6px rgba(245, 158, 11, .95);
  }
}

@keyframes ops-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ops-beacon-amber {
  0%, 100% {
    background: #d97706;
    box-shadow: 0 0 rgba(217, 119, 6, .55), 0 0 10px 2px rgba(245, 158, 11, .7);
  }

  50% {
    background: #f59e0b;
    box-shadow: 0 0 0 7px rgba(217, 119, 6, 0), 0 0 22px 7px #f59e0b;
  }
}

.operations-root .ops-gyro-orange {
  animation: .9s ease-in-out infinite ops-beacon-amber;
}

@keyframes ops-beacon-police {
  0% {
    background: #dc2626;
    transform: scale(1);
    box-shadow: 0 0 rgba(220, 38, 38, .6), 0 0 14px 4px rgba(220, 38, 38, .95);
  }

  49% {
    background: #dc2626;
    transform: scale(1.14);
    box-shadow: 0 0 0 7px rgba(220, 38, 38, 0), 0 0 16px 5px rgba(220, 38, 38, .6);
  }

  50% {
    background: #1d4ed8;
    transform: scale(1);
    box-shadow: 0 0 rgba(29, 78, 216, .6), 0 0 14px 4px rgba(29, 78, 216, .95);
  }

  99% {
    background: #1d4ed8;
    transform: scale(1.14);
    box-shadow: 0 0 0 7px rgba(29, 78, 216, 0), 0 0 16px 5px rgba(29, 78, 216, .6);
  }

  100% {
    background: #dc2626;
    transform: scale(1);
    box-shadow: 0 0 rgba(220, 38, 38, .6);
  }
}

@keyframes ops-card-amber {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(217, 119, 6, .28), 0 1px 3px rgba(15, 23, 42, .06);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(217, 119, 6, .85), 0 0 16px 1px rgba(245, 158, 11, .45);
  }
}

@keyframes ops-card-police {
  0%, 100% {
    box-shadow: 0 0 0 1.5px rgba(220, 38, 38, .9), 0 0 16px 1px rgba(220, 38, 38, .4);
  }

  50% {
    box-shadow: 0 0 0 1.5px rgba(29, 78, 216, .9), 0 0 16px 1px rgba(29, 78, 216, .4);
  }
}

.operations-root .ops-blink-pieces {
  animation: 1.1s ease-in-out infinite ops-card-amber;
  border-color: #f59e0b !important;
}

.operations-root .ops-gyro {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: inline-flex;
  position: relative;
  overflow: visible;
}

.operations-root .ops-gyro:after {
  content: "";
  pointer-events: none;
  z-index: 0;
  background: conic-gradient(rgba(255, 255, 255, .6) 0deg, rgba(0, 0, 0, 0) 60deg, rgba(0, 0, 0, 0) 360deg);
  border-radius: 50%;
  animation: .85s linear infinite ops-sweep;
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
}

.operations-root .ops-gyro svg {
  z-index: 1;
  animation: none;
  position: relative;
}

.operations-root .ops-gyro-red, .operations-root .ops-gyro-orange {
  animation: .9s ease-in-out infinite ops-beacon-police;
}

.operations-root .ops-blink-ct, .operations-root .ops-blink-pieces {
  animation: .9s ease-in-out infinite ops-card-police;
  border-color: #ef4444 !important;
}

@keyframes ops-card-replan {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(249, 115, 22, .35), 0 1px 3px rgba(15, 23, 42, .06);
  }

  50% {
    box-shadow: 0 0 0 2px rgba(249, 115, 22, .8), 0 0 12px 1px rgba(249, 115, 22, .4);
  }
}

.operations-root .ops-blink-replanifier {
  animation: 1.6s ease-in-out infinite ops-card-replan;
  border-color: #f97316 !important;
}

.operations-root .ops-card-retard {
  background: rgba(100, 116, 139, .06) !important;
  border-style: dashed !important;
  border-color: #94a3b8 !important;
}

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