/* _content/Components/Layout/MainLayout.razor.rz.scp.css */
.layout-root[b-agn70v2urf] {
  display: flex;
  flex-direction: column;
  background: var(--arel-bg);
  height: 100vh;
  color: var(--arel-text);
  font-family: var(--font-family);
}

.layout-header[b-agn70v2urf] {
  position: sticky;
  top: 0;
  z-index: 1030;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  background: var(--arel-iceblue);
  border-bottom: 1px solid rgba(15, 28, 46, 0.14);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
  min-height: 72px;
  color: var(--arel-navy-light);
}

.header-left[b-agn70v2urf],
.header-right[b-agn70v2urf],
.user-info[b-agn70v2urf],
.user-meta[b-agn70v2urf],
.header-actions[b-agn70v2urf] {
  min-width: 0;
}

.header-left[b-agn70v2urf] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-logo[b-agn70v2urf] {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
  width: auto;
  height: 32px;
  object-fit: contain;
}

.header-right[b-agn70v2urf] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}

.user-info[b-agn70v2urf] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: 0.75rem;
  flex-wrap: wrap;
  min-width: 0;
}

.user-meta[b-agn70v2urf] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-width: 0;
  text-align: right;
}

.user-meta .d-flex[b-agn70v2urf] {
  align-items: center;
}

.user-meta .badge[b-agn70v2urf] {
  padding: 0.25rem 0.5rem;
  font-weight: 500;
  font-size: 0.7rem;
}

.user-name[b-agn70v2urf],
.user-email[b-agn70v2urf] {
  min-width: 0;
  display: inline-block;
}

.user-name[b-agn70v2urf] {
  color: var(--arel-navy);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.user-email[b-agn70v2urf] {
  color: var(--arel-navy-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.user-role[b-agn70v2urf] {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-logout[b-agn70v2urf] {
  transition: background 0.15s ease;
  cursor: pointer;
  border: 1px solid rgba(15, 28, 46, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0.8rem;
  color: var(--arel-navy);
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-logout:hover[b-agn70v2urf],
.btn-logout:focus-visible[b-agn70v2urf] {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(248, 113, 113, 0.65);
  color: #b42318;
}

.btn-login[b-agn70v2urf] {
  transition: background 0.15s ease;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--arel-teal);
  padding: 0.5rem 1rem;
  color: white;
  font-weight: 600;
}

.btn-login:hover[b-agn70v2urf] {
  background: #149b8a;
}

.hamburger-btn[b-agn70v2urf] {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(15, 28, 46, 0.2);
  background: rgba(255, 255, 255, 0.7);
  color: var(--arel-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;
}

.hamburger-btn:hover[b-agn70v2urf],
.hamburger-btn:focus-visible[b-agn70v2urf] {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.7);
  color: #dbeafe;
  box-shadow: none;
}

.hamburger-btn i[b-agn70v2urf] {
  font-size: 1.25rem;
  line-height: 1;
}

.connection-status[b-agn70v2urf] {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.status-dot[b-agn70v2urf] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.api-unavailable-banner[b-agn70v2urf] {
  border-top: 1px solid #f1dda8;
  border-bottom: 1px solid #f1dda8;
  background: #fff4cd;
  padding: 0.6rem 1.25rem;
  color: #7a4d0b;
  font-weight: 600;
  font-size: 0.9rem;
}

.layout-body[b-agn70v2urf] {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.header-actions[b-agn70v2urf] {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-right: 1rem;
}

.header-actions .btn-link[b-agn70v2urf],
.notification-dropdown .btn-link[b-agn70v2urf] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 10px;
  color: var(--arel-navy);
}

.header-actions .btn-link:hover[b-agn70v2urf],
.notification-dropdown .btn-link:hover[b-agn70v2urf] {
  background: rgba(15, 28, 46, 0.08);
}

.connection-status[b-agn70v2urf] {
  margin-left: 0.15rem;
}

@media (max-width: 991.98px) {
  .layout-header[b-agn70v2urf] {
    flex-wrap: wrap;
    padding: 0.65rem 0.75rem;
  }

  .header-left[b-agn70v2urf],
  .header-right[b-agn70v2urf] {
    width: 100%;
  }

  .header-right[b-agn70v2urf] {
    justify-content: space-between;
  }

  .header-actions[b-agn70v2urf] {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .user-info[b-agn70v2urf] {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .user-meta[b-agn70v2urf] {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .layout-header[b-agn70v2urf] {
    padding: 0.6rem 0.75rem;
  }

  .header-actions[b-agn70v2urf] {
    gap: 0.2rem;
    width: 100%;
    justify-content: space-between;
  }

  .header-actions .btn-link[b-agn70v2urf],
  .notification-dropdown .btn-link[b-agn70v2urf] {
    width: 2rem;
    height: 2rem;
  }

  .user-info[b-agn70v2urf] {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .user-meta[b-agn70v2urf] {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .user-name[b-agn70v2urf],
  .user-email[b-agn70v2urf] {
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
  }

  .btn-logout[b-agn70v2urf] {
    width: 100%;
  }
}
/* _content/Components/Layout/NavMenu.razor.rz.scp.css */
.sidebar-overlay[b-e905de0oa2] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 199;
}

.hamburger-btn[b-e905de0oa2] {
  background: none;
  border: none;
  color: var(--arel-navy);
  font-size: 1.5rem;
  padding: 0.25rem 0.5rem;
  margin-right: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s ease;
}

.hamburger-btn:hover[b-e905de0oa2] {
  background: rgba(0, 0, 0, 0.06);
}

.sidebar-close-btn[b-e905de0oa2] {
  background: none;
  border: none;
  color: var(--arel-text);
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 0.25rem;
}

.sidebar-nav[b-e905de0oa2] {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-nested[b-e905de0oa2] {
  margin-left: 0.75rem;
}

.badge-sm[b-e905de0oa2] {
  font-size: 0.7rem;
  padding: 0.2rem 0.4rem;
  margin-left: auto;
}
/* _content/Components/Pages/AdaptiveRisk/AdaptiveRiskManager.razor.rz.scp.css */
.adaptive-risk-header-row[b-nqp58dnjlo] {
  gap: 1rem;
}

.adaptive-risk-actions[b-nqp58dnjlo] {
  flex-wrap: wrap;
}

.drift-scroll-region[b-nqp58dnjlo] {
  max-height: 420px;
  overflow-y: auto;
}

.drift-row[b-nqp58dnjlo] {
  gap: 0.75rem;
}

.drift-scores[b-nqp58dnjlo] {
  flex-shrink: 0;
}

.queue-row-clickable[b-nqp58dnjlo] {
  cursor: pointer;
  transition:
    background-color 120ms ease,
    box-shadow 120ms ease;
}

.queue-row-clickable:hover[b-nqp58dnjlo] {
  background-color: #f8fbff;
}

.queue-row-clickable:focus-within[b-nqp58dnjlo] {
  box-shadow: inset 0 0 0 1px rgba(13, 110, 253, 0.25);
}

.compact-insights-grid[b-nqp58dnjlo] {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-insight[b-nqp58dnjlo] {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.08), rgba(108, 117, 125, 0.03));
  border: 1px solid rgba(108, 117, 125, 0.15);
  border-radius: 0.6rem;
  padding: 0.65rem 0.75rem;
}

.compact-insight-label[b-nqp58dnjlo] {
  color: #6c757d;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.compact-insight-value[b-nqp58dnjlo] {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.15rem;
}

.model-health-compact-body[b-nqp58dnjlo] {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.model-health-mini-grid[b-nqp58dnjlo] {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}

.model-health-compact-list[b-nqp58dnjlo] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.model-health-row[b-nqp58dnjlo] {
  align-items: center;
  border-top: 1px solid rgba(108, 117, 125, 0.2);
  display: grid;
  gap: 0.35rem;
  grid-template-columns: minmax(0, 1fr) auto auto;
  min-height: 2rem;
  padding-top: 0.35rem;
}

.model-health-version[b-nqp58dnjlo] {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 0;
  overflow-wrap: anywhere;
}

.model-activate-btn[b-nqp58dnjlo] {
  line-height: 1;
  min-height: 1.55rem;
  padding: 0.15rem 0.4rem;
}

.drift-compact-row[b-nqp58dnjlo] {
  gap: 0.75rem;
}

.adaptive-action-group[b-nqp58dnjlo] {
  justify-content: center;
  white-space: nowrap;
}

.adaptive-icon-btn[b-nqp58dnjlo] {
  align-items: center;
  display: inline-flex;
  height: 1.9rem;
  justify-content: center;
  line-height: 1;
  min-width: 1.9rem;
  padding: 0;
}

.adaptive-icon-btn i[b-nqp58dnjlo] {
  font-size: 0.95rem;
}

.adaptive-mini-stat[b-nqp58dnjlo] {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(13, 110, 253, 0.01));
  border: 1px solid rgba(13, 110, 253, 0.12);
  border-radius: 0.75rem;
  height: 100%;
  padding: 0.85rem;
}

.adaptive-mini-label[b-nqp58dnjlo] {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.adaptive-mini-value[b-nqp58dnjlo] {
  color: #0d6efd;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.2rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 1199.98px) {
  .drift-scroll-region[b-nqp58dnjlo] {
    max-height: 340px;
  }
}

@media (max-width: 767.98px) {
  .adaptive-risk-header-row[b-nqp58dnjlo] {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .adaptive-risk-actions[b-nqp58dnjlo] {
    width: 100%;
  }

  .adaptive-risk-actions .btn[b-nqp58dnjlo] {
    flex: 1 1 auto;
  }

  .drift-scroll-region[b-nqp58dnjlo] {
    max-height: 300px;
  }

  .drift-row[b-nqp58dnjlo] {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .drift-compact-row[b-nqp58dnjlo] {
    align-items: flex-start !important;
    flex-direction: column;
  }

  .drift-scores[b-nqp58dnjlo] {
    text-align: left !important;
  }

  .compact-insights-grid[b-nqp58dnjlo] {
    grid-template-columns: 1fr;
  }

  .model-health-row[b-nqp58dnjlo] {
    grid-template-columns: 1fr;
  }
}
/* _content/Components/Pages/Billing/SubaccountBillingOps.razor.rz.scp.css */
/* _content/Components/Pages/Clients/UserManager.razor.rz.scp.css */
.status-inactive[b-ivk5bvs8m8] {
  background-color: #fee2e2;
  color: #991b1b;
}

.lockout-locked[b-ivk5bvs8m8] {
  border-color: #fca5a5;
  background-color: #fee2e2;
  color: #991b1b;
}

.lockout-unlocked[b-ivk5bvs8m8] {
  border-color: #86efac;
  background-color: #dcfce7;
  color: #166534;
}

.lockout-timer[b-ivk5bvs8m8] {
  display: block;
  margin-top: 0.25rem;
  color: #7f1d1d;
  font-weight: 600;
  font-size: 0.75rem;
  white-space: nowrap;
}

.lockout-loading[b-ivk5bvs8m8] {
  display: inline-block;
  animation: pulse 1.5s infinite;
  font-size: 1.2em;
}

.user-row-locked[b-ivk5bvs8m8] {
  background-color: #fef2f2;
}

.user-row-locked:hover[b-ivk5bvs8m8] {
  background-color: #fee2e2;
}

@media (max-width: 1024px) {
  .col-name[b-ivk5bvs8m8] {
    width: 12%;
  }

  .col-email[b-ivk5bvs8m8] {
    width: 22%;
  }

  .col-role[b-ivk5bvs8m8] {
    width: 10%;
  }

  .col-lockout[b-ivk5bvs8m8] {
    width: 13%;
  }

  .col-created[b-ivk5bvs8m8] {
    width: 12%;
  }
}

@media (max-width: 768px) {
  .col-name[b-ivk5bvs8m8] {
    width: 13%;
  }

  .col-email[b-ivk5bvs8m8] {
    width: 20%;
  }

  .col-role[b-ivk5bvs8m8] {
    width: 11%;
  }

  .col-lockout[b-ivk5bvs8m8] {
    width: 14%;
  }

  .col-created[b-ivk5bvs8m8] {
    width: 11%;
  }
}
/* _content/Components/Pages/Common/NotificationBadge.razor.rz.scp.css */
.badge-counter[b-ogcs254pwr] {
  position: absolute;
  top: -5px;
  right: -5px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
/* _content/Components/Pages/Index.razor.rz.scp.css */
.dashboard-header h1[b-qnieri8a2l] {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
}
.section-header[b-qnieri8a2l] {
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e9ecef;
}

.section-header h4[b-qnieri8a2l] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}
.loading-state[b-qnieri8a2l] {
  text-align: center;
  padding: 4rem 2rem;
}

.loading-state .spinner-border[b-qnieri8a2l] {
  width: 3rem;
  height: 3rem;
}

.loading-state-inline[b-qnieri8a2l] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}
.quick-actions[b-qnieri8a2l] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.quick-action-btn[b-qnieri8a2l] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  text-decoration: none;
  color: #495057;
  transition: all 0.2s ease;
  gap: 0.5rem;
}

.quick-action-btn:hover[b-qnieri8a2l] {
  background: #e9ecef;
  color: #0d6efd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #0d6efd;
}
.quick-action-btn[b-qnieri8a2l] {
  padding: 1rem 0.75rem;
}

.quick-action-btn i[b-qnieri8a2l] {
  font-size: 1.5rem;
}

.quick-action-btn span[b-qnieri8a2l] {
  font-size: 0.875rem;
  font-weight: 500;
}

.quick-action-btn-critical[b-qnieri8a2l] {
  border-color: #f5c2c7;
  background: #fff5f5;
  color: #b02a37;
}

.quick-action-btn-critical:hover[b-qnieri8a2l] {
  border-color: #dc3545;
  background: #ffe3e6;
  color: #842029;
}

.dashboard-header[b-qnieri8a2l] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-time-range[b-qnieri8a2l] {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}

.dashboard-time-range .btn[b-qnieri8a2l] {
  min-width: 88px;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-size: 0.92rem;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .dashboard-header > .d-flex[b-qnieri8a2l] {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.75rem;
  }

  .dashboard-time-range[b-qnieri8a2l] {
    width: 100%;
    justify-content: stretch;
  }

  .dashboard-time-range .btn[b-qnieri8a2l] {
    flex: 1 1 0;
    min-width: 0;
  }
}
/* _content/Components/Pages/Login.razor.rz.scp.css */
.login-card[b-3d57m0ntd0] {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.login-card .login-field[b-3d57m0ntd0] {
  text-align: left;
}

@media (max-width: 480px) {
  .login-card[b-3d57m0ntd0] {
    padding: 1.8rem;
  }
}
/* _content/Components/Pages/Messages/ChannelTemplates.razor.rz.scp.css */
.channel-parent-card .channel-list[b-d389e53x4t] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 26rem;
  overflow-y: auto;
}

.channel-parent-card .channel-list-item[b-d389e53x4t] {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  border: 1px solid #e6ecf3;
  border-radius: 0.7rem;
  padding: 0.45rem;
  background: #fff;
}

.channel-parent-card .channel-list-item.active[b-d389e53x4t] {
  border-color: #2d6cdf;
  box-shadow: 0 0 0 2px rgba(45, 108, 223, 0.12);
  background: #f8fbff;
}

.channel-parent-card .channel-select[b-d389e53x4t] {
  text-decoration: none;
  color: inherit;
  padding: 0.1rem 0.2rem;
}

.channel-parent-card .channel-actions[b-d389e53x4t] {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.provider-account-details > summary[b-d389e53x4t] {
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.provider-account-details > summary[b-d389e53x4t]::-webkit-details-marker {
  display: none;
}

.provider-account-details > summary[b-d389e53x4t]::before {
  content: "\f285";
  font-family: "bootstrap-icons";
  margin-right: 0.4rem;
  transition: transform 0.15s ease-in-out;
}

.provider-account-details[open] > summary[b-d389e53x4t]::before {
  transform: rotate(90deg);
}
/* _content/Components/Pages/Messages/MessageDetail.razor.rz.scp.css */
.status-badge[b-u2a6jwmqyv] {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
/* _content/Components/Pages/Messages/MessageTransitions.razor.rz.scp.css */
/* ============================
   AUDIT TIMELINE
   ============================ */

.audit-timeline[b-tc48asg3bf] {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 2px solid #ccc;
}

.audit-item[b-tc48asg3bf] {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.audit-marker[b-tc48asg3bf] {
  position: absolute;
  left: -0.55rem;
  top: 0.3rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--arel-teal);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--arel-teal);
}

.audit-content[b-tc48asg3bf] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.audit-header[b-tc48asg3bf] {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666;
}

.audit-timestamp[b-tc48asg3bf] {
  font-weight: 600;
}

.audit-version[b-tc48asg3bf] {
  font-style: italic;
}

.audit-transition[b-tc48asg3bf] {
  font-size: 1rem;
  margin-top: 0.1rem;
}

.audit-reason[b-tc48asg3bf] {
  font-size: 0.9rem;
  color: #444;
  margin-top: 0.25rem;
}
.card[b-tc48asg3bf] {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.card-title[b-tc48asg3bf] {
  color: var(--arel-navy-light);
  font-weight: 600;
}

.message-id-code[b-tc48asg3bf] {
  font-family: "Consolas", "Monaco", monospace;
  font-size: 0.9rem;
  color: #6c757d;
  background: #f8f9fa;
  padding: 4px 8px;
  border-radius: 4px;
}

.state-badge[b-tc48asg3bf] {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}

.state-processing[b-tc48asg3bf] {
  background: linear-gradient(135deg, #e7f3ff 0%, #cfe2ff 100%);
  color: #004085;
  border: 1px solid #b6d4fe;
}

.state-success[b-tc48asg3bf] {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.state-failed[b-tc48asg3bf],
.state-rejected[b-tc48asg3bf] {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.state-review[b-tc48asg3bf] {
  background: linear-gradient(135deg, #e2d9f3 0%, #d4c5f9 100%);
  color: #5a1e8c;
  border: 1px solid #d4c5f9;
}

.state-suspended[b-tc48asg3bf] {
  background: linear-gradient(135deg, #e2e3e5 0%, #d6d8db 100%);
  color: #383d41;
  border: 1px solid #d6d8db;
}

.state-terminal[b-tc48asg3bf] {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  border: 1px solid #545b62;
}

.transition-group[b-tc48asg3bf] {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--arel-teal);
}

.transition-group-title[b-tc48asg3bf] {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--arel-navy-light);
  margin-bottom: 0.75rem;
}

.action-buttons[b-tc48asg3bf] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.action-buttons .table-btn[b-tc48asg3bf] {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.audit-timeline[b-tc48asg3bf] {
  position: relative;
}

.audit-item[b-tc48asg3bf] {
  display: flex;
  padding-bottom: 2rem;
}

.audit-item-last[b-tc48asg3bf] {
  padding-bottom: 0;
}

.audit-marker[b-tc48asg3bf] {
  position: relative;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.audit-marker-circle[b-tc48asg3bf] {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.audit-marker-line[b-tc48asg3bf] {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(to bottom, #dee2e6 0%, #e9ecef 100%);
  margin-top: 4px;
}

.audit-content[b-tc48asg3bf] {
  flex-grow: 1;
  padding: 1rem;
  margin-left: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid var(--arel-teal);
}

.audit-header[b-tc48asg3bf] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.audit-timestamp[b-tc48asg3bf] {
  font-size: 0.85rem;
  color: #6c757d;
  font-weight: 500;
}

.audit-version-badge[b-tc48asg3bf] {
  background: var(--arel-navy-light);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.audit-transition[b-tc48asg3bf] {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.transition-arrow[b-tc48asg3bf] {
  font-size: 1.25rem;
  color: var(--arel-teal);
  font-weight: bold;
}

.audit-metadata[b-tc48asg3bf] {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.audit-actor[b-tc48asg3bf],
.audit-type[b-tc48asg3bf] {
  font-size: 0.85rem;
  color: #495057;
}

.audit-reason[b-tc48asg3bf] {
  background: white;
  padding: 0.75rem;
  border-radius: 4px;
  border-left: 3px solid var(--arel-teal);
  font-size: 0.9rem;
  color: #495057;
  margin-top: 0.5rem;
}

.empty-state[b-tc48asg3bf] {
  text-align: center;
  padding: 2rem;
  color: #6c757d;
}

.loading-box[b-tc48asg3bf],
.error-box[b-tc48asg3bf] {
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.loading-box[b-tc48asg3bf] {
  background: var(--arel-iceblue);
  color: var(--arel-navy-light);
}

.error-box[b-tc48asg3bf] {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
/* _content/Components/Pages/PhoneNumbers/TelnyxOperations.razor.rz.scp.css */
.spin-icon[b-fzo890iqtm] {
  display: inline-block;
  animation: spin-filter-b-fzo890iqtm 1s linear infinite;
}

@keyframes spin-filter-b-fzo890iqtm {
  to {
    transform: rotate(360deg);
  }
}
/* _content/Components/Pages/Reporting/ReportBuilder.razor.rz.scp.css */
.chart-preview[b-t5nh608hgn] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #f8f9fa;
  padding: 2rem;
  min-height: 400px;
}

@media (max-width: 992px) {
  .report-builder[b-t5nh608hgn] {
    grid-template-columns: 1fr;
  }
}

.report-builder[b-t5nh608hgn] {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: 600px;
}
/* _content/Components/Pages/Reporting/ReportList.razor.rz.scp.css */
.report-card[b-3egyzdhe9a] {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}

.report-card:hover[b-3egyzdhe9a] {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: #0d6efd;
}

.report-card .card-title[b-3egyzdhe9a] {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
}

.report-card .card-footer[b-3egyzdhe9a] {
  border-top: 1px solid #e9ecef;
  padding: 0.75rem 1.25rem;
}
.report-meta[b-3egyzdhe9a] {
  border-top: 1px solid #e9ecef;
  padding-top: 0.75rem;
}

.report-meta small[b-3egyzdhe9a] {
  line-height: 1.8;
}

.builder-sidebar[b-3egyzdhe9a] {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  background: #f8f9fa;
  padding: 1.5rem;
}

.builder-canvas[b-3egyzdhe9a] {
  border: 1px solid #e9ecef;
  border-radius: 10px;
  background: white;
  padding: 2rem;
}

.builder-section[b-3egyzdhe9a] {
  margin-bottom: 2rem;
}

.builder-section h6[b-3egyzdhe9a] {
  margin-bottom: 1rem;
  color: #6c757d;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
/* _content/Components/Pages/Systems/AuditLogs.razor.rz.scp.css */
.audit-table[b-q5ebjemdd3] {
  margin-top: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  border-collapse: collapse;
  background: #ffffff;
  width: 100%;
  overflow: hidden;
}

.audit-table th[b-q5ebjemdd3] {
  border-bottom: 1px solid #d9e1e7;
  background: var(--arel-iceblue);
  padding: 12px 16px;
  color: var(--arel-navy-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
}

.audit-table td[b-q5ebjemdd3] {
  border-bottom: 1px solid #f0f2f5;
  padding: 12px 16px;
  color: var(--arel-text);
  font-size: 0.9rem;
}

.audit-table tr:hover[b-q5ebjemdd3] {
  background: #f9fbfc;
}
/* _content/Components/Pages/Systems/SystemAlerts.razor.rz.scp.css */
.alert-row[b-9lbtuug33i] {
  transition: background-color 0.15s ease;
  cursor: pointer;
}

.alert-row:hover[b-9lbtuug33i] {
  background-color: #f8f9fa;
}

.page-size-select[b-9lbtuug33i] {
  transition: border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid #d9e1e7;
  border-radius: 0.375rem;
  background-color: #ffffff;
  padding: 0.5rem 0.75rem;
  color: var(--arel-text);
  font-size: 0.9rem;
}

.page-size-select:hover[b-9lbtuug33i] {
  border-color: var(--arel-navy-light);
}
/* _content/Components/Widgets/DashboardLayoutEditor.razor.rz.scp.css */
.layout-editor-backdrop[b-phhl2kr69m] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1040;
  animation: fadeIn 0.15s ease;
}

.layout-editor-drawer[b-phhl2kr69m] {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 360px;
  background: #fff;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.2s ease;
  overflow: hidden;
}

.layout-editor-body[b-phhl2kr69m] {
  flex: 1;
  overflow-y: auto;
}

.layout-editor-item[b-phhl2kr69m] {
  transition: box-shadow 0.15s;
}

.layout-editor-item:hover[b-phhl2kr69m] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
/* _content/Components/Widgets/FailedOperationsSummary.razor.rz.scp.css */
.failed-operations-list[b-c28dc6pd41] {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.failed-operation-item[b-c28dc6pd41] {
  border-left: 3px solid #dc3545;
  border-radius: 4px;
  background: #fff5f5;
  padding: 0.75rem;
}
/* _content/Components/Widgets/RealtimeMetricsWidget.razor.rz.scp.css */
.metric-item[b-06gmpkru06] {
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  padding: 0.75rem;
  text-align: center;
}

.metric-item:hover[b-06gmpkru06] {
  transform: translateY(-2px);
  border-color: #0d6efd;
  background: #f0f7ff;
}

.metric-item.selected[b-06gmpkru06] {
  border-color: #0d6efd;
  background: #0d6efd;
  color: white;
}

.metric-item i[b-06gmpkru06] {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.metric-item span[b-06gmpkru06] {
  font-weight: 500;
  font-size: 0.875rem;
}
/* _content/Components/Widgets/RecentActivityTimeline.razor.rz.scp.css */
.timeline-list[b-mrdb5dr64n] {
  padding: 0;
}

.timeline-item[b-mrdb5dr64n] {
  display: flex;
  gap: 1rem;
  transition: background-color 0.15s ease;
  border-bottom: 1px solid #f0f0f0;
  padding: 1rem;
}

.timeline-item:hover[b-mrdb5dr64n] {
  background-color: #f8f9fa;
}

.timeline-item:last-child[b-mrdb5dr64n] {
  border-bottom: none;
}

.timeline-item-failed[b-mrdb5dr64n] {
  background-color: #fff5f5;
}

.timeline-item-failed:hover[b-mrdb5dr64n] {
  background-color: #ffe8e8;
}

.timeline-icon[b-mrdb5dr64n] {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: white;
  font-size: 0.875rem;
}

.timeline-content[b-mrdb5dr64n] {
  flex: 1;
  min-width: 0;
}

.timeline-header[b-mrdb5dr64n] {
  font-size: 0.9rem;
}

.timeline-action[b-mrdb5dr64n] {
  font-weight: 600;
}

.timeline-entity[b-mrdb5dr64n] {
  margin-left: 0.25rem;
  color: var(--arel-teal, #1bb5a0);
}

.timeline-time[b-mrdb5dr64n] {
  margin-top: 0.25rem;
  font-size: 0.8rem;
}
/* _content/Components/Widgets/StateBreakdownWidget.razor.rz.scp.css */
.state-pill[b-351rdiqohi] {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 0.5rem 0.625rem;
  background: #f8f9fa;
}
