/*
  TCMS Base Theme Bundle
  Auto-copied from templates/base.html style blocks.
  Order matters: core first, policy second.
*/

/* ===== core (from first <style> in base.html) ===== */
    :root {
      --tcms-bg: #fff;
      --tcms-bg-soft: #fff;
      --tcms-card: #fff;
      --tcms-card-soft: #fff;
      --tcms-text: #111111;
      --tcms-muted: #6b7280;
      --tcms-border: rgba(0, 0, 0, 0.05);
      --tcms-border-strong: rgba(0, 0, 0, 0.1);
      --tcms-accent: #111111;
      --tcms-accent-soft: rgba(210, 246, 70, 0.2);
      --tcms-lime: #d2f646;
      --tcms-success: #15803d;
      --tcms-warning: #b45309;
      --tcms-danger: #b91c1c;
      --tcms-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
      --tcms-shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
      --tcms-radius-lg: 12px;
      --tcms-radius-md: 8px;
      --tcms-radius-sm: 6px;
    }
    body {
      color: var(--tcms-text);
      background: var(--tcms-bg);
      font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
    }
    body::before {
      display: none;
    }
    .tcms-nav {
      position: sticky;
      top: 16px;
      z-index: 1030;
      width: min(1280px, calc(100% - 32px));
      margin: 0 auto;
      border: 1px solid var(--tcms-border);
      border-radius: 999px;
      background: #fff;
      backdrop-filter: blur(24px);
      box-shadow: var(--tcms-shadow);
      color: var(--tcms-text);
      padding: 0;
    }
    .tcms-nav .container-fluid {
      min-height: 56px;
      padding: 0 16px;
    }
    .tcms-brand {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      color: var(--tcms-text);
      min-width: 0;
    }
    .tcms-brand:hover,
    .tcms-brand:focus {
      color: var(--tcms-text);
    }
    .tcms-brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #000;
      color: var(--tcms-lime);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.22);
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
    }
    .tcms-nav .navbar-brand {
      margin: 0;
      color: var(--tcms-text);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: -0.025em;
    }
    .hamburger-btn {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 38px;
      height: 32px;
      padding: 0 10px;
      border: 1px solid var(--tcms-border-strong);
      border-radius: 12px;
      background: #fff;
      transition: border-color 0.18s ease, background-color 0.18s ease;
    }
    .hamburger-btn:hover {
      border-color: #0f172a;
      background: #fff;
    }
    .hamburger-line {
      display: block;
      width: 16px;
      height: 2px;
      border-radius: 2px;
      background: #111827;
    }
    .tcms-offcanvas {
      width: 280px;
      border-right: 1px solid rgba(236, 244, 255, 0.1);
      background: #000;
      color: #e7effd;
    }
    .tcms-offcanvas .offcanvas-header {
      border-bottom: 1px solid rgba(236, 244, 255, 0.12);
      background: #000;
    }
    .tcms-offcanvas .offcanvas-title {
      color: #f4f8ff;
    }
    .tcms-offcanvas .btn-close {
      filter: none;
      background-image: none;
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 999px;
      width: 2rem;
      height: 2rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      opacity: 1;
      color: #fff;
      padding: 0;
    }
    .tcms-offcanvas .btn-close::before {
      content: "×";
      font-size: 1.2rem;
      line-height: 1;
      color: #fff;
    }
    .tcms-offcanvas .btn-close:focus {
      box-shadow: none;
    }
    .tcms-offcanvas .list-group {
      gap: 6px;
    }
    .tcms-offcanvas .list-group-item {
      border-radius: 12px;
      border: 1px solid rgba(236, 244, 255, 0.12);
      font-size: 13px;
      font-weight: 600;
      color: #e9f1ff;
      background: #000;
    }
    .tcms-offcanvas .list-group-item:hover {
      border-color: rgba(210, 246, 70, 0.5);
      background: #000;
      color: #f8fce7;
    }
    .tcms-offcanvas .list-group-item.active {
      border-color: rgba(210, 246, 70, 0.6);
      background: #000;
      color: #f8fce7;
    }
    .tcms-lang-switch {
      display: flex;
      gap: 6px;
      align-items: center;
      flex-wrap: wrap;
    }
    .tcms-lang-switch .btn {
      min-width: 52px;
    }
    .tcms-shell {
      width: min(1280px, calc(100% - 32px));
      margin: 16px auto 0;
      padding: 8px 0 24px;
    }
    .tcms-card {
      background: var(--tcms-card);
      border: 1px solid var(--tcms-border);
      border-radius: var(--tcms-radius-lg);
      box-shadow: var(--tcms-shadow);
    }
    .form-control,
    .form-select {
      border-color: var(--tcms-border);
      border-radius: var(--tcms-radius-sm);
      box-shadow: none;
    }
    .form-control:focus,
    .form-select:focus {
      border-color: #7a8799;
      box-shadow: 0 0 0 0.2rem rgba(122, 135, 153, 0.2);
    }
    .btn {
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: 0.03em;
    }
    .btn-primary {
      border-color: #0b0f14;
      color: #ffffff;
      background: #0b0f14;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    }
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
      border-color: #0f172a !important;
      color: #000 !important;
      background: #fff !important;
    }
    .btn-outline-primary {
      border-color: var(--tcms-border-strong);
      color: #0f172a;
      background: #fff;
    }
    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary:active {
      border-color: #000 !important;
      color: #000 !important;
      background: #fff !important;
    }
    .btn-outline-secondary {
      border-color: var(--tcms-border-strong);
      color: #334155;
    }
    .btn-outline-secondary:hover,
    .btn-outline-secondary:focus,
    .btn-outline-secondary:active {
      border-color: #000 !important;
      background: #fff !important;
      color: #000 !important;
    }
    .tcms-nav .btn-outline-light {
      border-color: var(--tcms-border-strong);
      color: #111827;
      background: #fff;
    }
    .tcms-nav .btn-outline-light:hover,
    .tcms-nav .btn-outline-light:focus,
    .tcms-nav .btn-outline-light:active {
      border-color: #000 !important;
      color: #fff !important;
      background: #000 !important;
    }
    .task-pill {
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid var(--tcms-border);
      color: #475569;
      font-family: "JetBrains Mono", ui-monospace, monospace;
      letter-spacing: 0.02em;
    }
    .digest-page {
      padding-bottom: 14px;
    }
    .digest-hero {
      border-radius: var(--tcms-radius-lg);
      background: rgba(255, 255, 255, 0.98);
    }
    .digest-hero-layout {
      display: grid;
      grid-template-columns: minmax(300px, 1fr) minmax(420px, 1.35fr);
      gap: 14px;
      align-items: end;
    }
    .digest-hero-layout--compact {
      grid-template-columns: minmax(320px, 1fr) auto;
    }
    .digest-title {
      margin: 0;
      font-size: 1.42rem;
      letter-spacing: -0.02em;
    }
    .digest-subtitle {
      color: #64748b;
      font-size: 13px;
      margin-top: 5px;
    }
    .digest-profile-line {
      display: grid;
      grid-template-columns: auto minmax(220px, 1fr);
      gap: 8px;
      align-items: center;
      margin-top: 10px;
    }
    .digest-hero-actions {
      display: grid;
      grid-template-columns: minmax(160px, 1fr) minmax(170px, 1fr) auto;
      gap: 8px;
      align-items: end;
    }
    .digest-hero-actions--two {
      grid-template-columns: minmax(150px, 1fr) minmax(190px, 1fr);
    }
    .digest-hero-actions .btn-sm,
    .digest-hero-actions .form-select-sm {
      height: 38px;
    }
    .digest-filter-card {
      background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 255, 0.95) 100%);
    }
    .digest-filter-grid {
      display: grid;
      grid-template-columns: minmax(280px, 1fr) minmax(180px, 220px) minmax(240px, 280px);
      gap: 10px;
      align-items: end;
    }
    .digest-filter-chips {
      min-height: 20px;
    }
    .digest-filter-chip {
      display: inline-flex;
      align-items: center;
      border: 1px solid #d4e2f3;
      border-radius: 999px;
      padding: 2px 9px;
      margin-right: 6px;
      margin-top: 4px;
      font-size: 11px;
      color: #42566e;
      background: #f1f7ff;
    }
    .digest-table-wrap {
      max-height: 52vh;
      overflow: auto;
      border: 1px solid var(--tcms-border);
      border-radius: 14px;
      background: #fff;
    }
    .digest-table-wrap thead th {
      position: sticky;
      top: 0;
      background: #f4f8fd;
      z-index: 2;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: #64748b;
      border-bottom-color: #dbe5f1;
      white-space: nowrap;
    }
    .digest-table-wrap tbody td {
      border-bottom-color: #edf2f8;
      font-size: 13px;
    }
    .digest-table-wrap tbody tr:hover {
      background: #f8fbff;
    }
    .digest-name-link {
      font-weight: 600;
      text-decoration: none;
    }
    .digest-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .digest-empty {
      border: 1px dashed #d7e4f4;
      border-radius: 12px;
      background: #fbfdff;
    }
    .digest-pagination {
      border-top: 1px solid #edf2f8;
      margin-top: 10px;
      padding-top: 10px;
    }
    .tcms-step-card {
      border-radius: 18px;
      position: sticky;
      top: 84px;
    }
    .tcms-step-btn {
      width: 100%;
      text-align: left;
      border: 1px solid #d6e2f0;
      border-radius: 12px;
      background: #f8fbff;
      color: #334155;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 11px;
      transition: all 0.15s ease;
    }
    .tcms-step-btn:hover {
      border-color: #b9cee9;
      background: #f0f6ff;
      color: #0d3b63;
    }
    .tcms-step-btn.active {
      border-color: #96b6dc;
      background: #e8f2ff;
      color: #0b3860;
      box-shadow: inset 0 0 0 1px rgba(150, 182, 220, 0.22);
    }
    .tcms-step-btn.done {
      border-color: #b8d8be;
      background: #ecfaf0;
    }
    .tcms-step-pane {
      border-radius: 18px;
    }
    .tcms-step-pane .step-title {
      margin: 0 0 10px;
      font-size: 1.05rem;
      letter-spacing: -0.01em;
    }
    .tcms-step-pane .step-muted {
      color: #64748b;
      font-size: 12px;
      margin-bottom: 10px;
    }
    .tcms-table-wrap-compact {
      max-height: 39vh;
      overflow: auto;
      border-radius: 14px;
    }
    .tcms-table-wrap-compact table td,
    .tcms-table-wrap-compact table th {
      white-space: nowrap;
    }
    .inbox-item {
      border: 1px solid var(--tcms-border);
      border-radius: 12px;
      padding: 12px;
      margin-bottom: 12px;
      background: #fff;
      cursor: grab;
    }
    .inbox-item:active {
      cursor: grabbing;
    }
    .inbox-preview {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .inbox-preview img {
      width: 64px;
      height: 64px;
      object-fit: cover;
      border-radius: 10px;
      border: 1px solid var(--tcms-border);
      flex-shrink: 0;
    }
    .inbox-preview .preview-text {
      font-size: 13px;
      color: #0f172a;
    }
    .inbox-preview .preview-meta {
      font-size: 11px;
      color: #6b7280;
      margin-top: 4px;
    }
    .fc .fc-toolbar-title {
      font-weight: 700;
      letter-spacing: -0.02em;
    }
    .fc .fc-toolbar {
      gap: 8px;
      flex-wrap: wrap;
    }
    .fc .fc-toolbar.fc-header-toolbar {
      margin-bottom: 0.75rem;
    }
    .fc .fc-button-primary {
      background: var(--tcms-accent);
      border-color: var(--tcms-accent);
      color: #fff;
    }
    .fc .fc-button-primary.fc-button-active {
      background: #091d33;
      border-color: #091d33;
    }
    .status-pill {
      font-size: 11px;
      padding: 2px 6px;
      border-radius: 999px;
      background: #ecf2fa;
      border: 1px solid #d3deeb;
      color: #1f2937;
      margin-left: 6px;
    }
    .event-title {
      display: flex;
      flex-direction: column;
      gap: 2px;
      font-size: 11px;
      line-height: 1.2;
      max-width: 100%;
    }
    .event-channel {
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .event-text {
      font-size: 11px;
      color: #334155;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .event-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
    }
    .event-badge {
      font-size: 10px;
      padding: 1px 6px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.12);
      color: #0f172a;
    }
    .event-type-badge {
      background: #e2e8f0;
      color: #1e293b;
    }
    .event-status-pending {
      background: #e5e7eb;
      color: #374151;
    }
    .event-status-sending {
      background: #dbeafe;
      color: #1d4ed8;
    }
    .event-status-retry {
      background: #ffedd5;
      color: #c2410c;
    }
    .event-status-done {
      background: #dcfce7;
      color: #15803d;
    }
    .event-status-failed {
      background: #fee2e2;
      color: #b91c1c;
    }
    .fc .fc-dayGridMonth-view .fc-daygrid-day-frame {
      min-height: 136px;
      max-height: 136px;
      overflow: hidden;
    }
    .fc .fc-dayGridMonth-view .fc-daygrid-day-events {
      margin-top: 4px;
    }
    .fc .fc-timegrid-slot {
      height: 48px;
    }
    .fc .fc-timegrid-axis-cushion,
    .fc .fc-timegrid-slot-label-cushion {
      font-size: 11px;
    }
    .filter-actions {
      display: flex;
      gap: 6px;
      margin-top: 6px;
      flex-wrap: wrap;
    }
    .media-thumb {
      width: 48px;
      height: 48px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--tcms-border);
      margin-right: 8px;
    }
    .media-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      border: 1px solid var(--tcms-border);
      border-radius: 8px;
      padding: 6px 8px;
      margin-bottom: 6px;
      background: #fff;
    }
    .media-item-left {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }
    .media-filename {
      max-width: 220px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid #cfe0f4;
      background: #edf4fc;
      color: #10243b;
      font-size: 11px;
      margin-right: 6px;
      margin-bottom: 6px;
    }
    .filter-chip span {
      opacity: 0.7;
    }
    .dashboard-filter-card {
      max-height: 280px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
      background: rgba(255, 255, 255, 0.96);
    }
    .dashboard-filter-row-1 {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(4, minmax(180px, 1fr));
      align-items: end;
    }
    .dashboard-filter-row-2 {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
    }
    .dashboard-filter-select {
      min-height: 78px;
      max-height: 78px;
      font-size: 13px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .dashboard-active-chips {
      display: flex;
      gap: 6px;
      overflow-x: auto;
      white-space: nowrap;
      padding-bottom: 2px;
    }
    .dashboard-active-chips .filter-chip {
      flex: 0 0 auto;
      margin-right: 0;
      margin-bottom: 0;
    }
    .dashboard-main-grid {
      display: grid;
      gap: 16px;
      grid-template-columns: minmax(0, 1fr) 320px;
      align-items: start;
    }
    .dashboard-sidebar {
      min-width: 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }
    .dashboard-main-grid.sidebar-collapsed {
      grid-template-columns: minmax(0, 1fr) 0;
    }
    .dashboard-main-grid.sidebar-collapsed .dashboard-sidebar {
      opacity: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .dashboard-sidebar-toggle-btn {
      display: none;
    }
    .dashboard-sidebar-backdrop {
      display: none;
    }
    @media (max-width: 1400px) {
      .dashboard-filter-row-1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .dashboard-main-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .dashboard-sidebar {
        position: fixed;
        top: 64px;
        right: 0;
        width: 320px;
        max-width: 90vw;
        max-height: calc(100vh - 64px);
        padding: 12px;
        overflow-y: auto;
        transform: translateX(100%);
        z-index: 1045;
      }
      .dashboard-main-grid.sidebar-open .dashboard-sidebar {
        transform: translateX(0);
      }
      .dashboard-main-grid.sidebar-collapsed .dashboard-sidebar {
        transform: translateX(100%);
      }
      .dashboard-sidebar-toggle-btn {
        display: inline-block;
      }
      .dashboard-sidebar-backdrop {
        position: fixed;
        inset: 64px 0 0 0;
        background: rgba(2, 6, 23, 0.35);
        z-index: 1040;
      }
      .dashboard-main-grid.sidebar-open + .dashboard-sidebar-backdrop {
        display: block;
      }
      .dashboard-main-grid.sidebar-collapsed + .dashboard-sidebar-backdrop {
        display: none;
      }
    }
    @media (max-width: 1500px) {
      .digest-hero-layout {
        grid-template-columns: 1fr;
      }
      .digest-hero-actions {
        grid-template-columns: minmax(180px, 1fr) minmax(190px, 1fr) auto;
      }
      .digest-hero-actions--two {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 1200px) {
      .tcms-step-card {
        position: static;
        top: auto;
      }
      .digest-filter-grid {
        grid-template-columns: 1fr;
      }
      .digest-profile-line {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .tcms-nav {
        width: calc(100% - 12px);
        margin-top: 6px;
      }
      .tcms-nav .container-fluid {
        min-height: 52px;
        padding: 0 8px;
      }
      .tcms-nav .navbar-brand {
        font-size: 0.96rem;
      }
      .tcms-shell {
        width: calc(100% - 12px);
      }
      .dashboard-filter-card {
        max-height: none;
      }
      .dashboard-filter-row-1 {
        grid-template-columns: minmax(0, 1fr);
      }
      .digest-hero-actions {
        grid-template-columns: 1fr;
      }
      .digest-hero-actions--two {
        grid-template-columns: 1fr;
      }
    }
    .shake {
      animation: shake 0.4s ease-in-out;
    }
    @keyframes shake {
      0%, 100% { transform: translateX(0); }
      20% { transform: translateX(-4px); }
      40% { transform: translateX(4px); }
      60% { transform: translateX(-3px); }
      80% { transform: translateX(3px); }
    }

/* ===== clean background policy (from second <style> in base.html) ===== */
    /* Clean background policy: only white/black surfaces project-wide. */
    :root {
      --tcms-bg: #fff;
      --tcms-bg-soft: #fff;
      --tcms-card: #fff;
      --tcms-card-soft: #fff;
    }
    body,
    .tcms-shell,
    .tcms-card,
    .digest-hero,
    .digest-filter-card,
    .digest-table-wrap,
    .digest-empty,
    .tcms-step-btn,
    .tcms-step-pane,
    .inbox-item,
    .media-item,
    .filter-chip,
    .dashboard-filter-card,
    .status-pill,
    .event-badge,
    .event-type-badge,
    .event-status-pending,
    .event-status-sending,
    .event-status-retry,
    .event-status-done,
    .event-status-failed,
    .table,
    .table thead th,
    .form-control,
    .form-select,
    .modal-content,
    .popover,
    .dropdown-menu {
      background: #fff !important;
      background-image: none !important;
    }
    .form-select {
      background-image: none !important;
      padding-right: 0.75rem !important;
    }
    .form-select option,
    select option {
      background: #fff !important;
      color: #000 !important;
    }
    .fc .fc-day-today,
    .fc .fc-daygrid-day.fc-day-today,
    .fc .fc-timegrid-col.fc-day-today,
    .fc .fc-highlight {
      background: #fff !important;
      background-image: none !important;
    }
    .table tbody tr:hover {
      background: #fff !important;
    }
    .tcms-nav,
    .hamburger-btn,
    .task-pill,
    .btn-outline-primary,
    .btn-outline-secondary,
    .tcms-nav .btn-outline-light {
      background: #fff !important;
      background-image: none !important;
    }
    .btn-primary,
    .fc .fc-button-primary,
    .fc .fc-button-primary.fc-button-active {
      border-color: #000 !important;
      background: #000 !important;
      color: #fff !important;
      background-image: none !important;
    }
    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-outline-primary:hover,
    .btn-outline-primary:focus,
    .btn-outline-primary:active,
    .btn-outline-secondary:hover,
    .btn-outline-secondary:focus,
    .btn-outline-secondary:active {
      border-color: #000 !important;
      background: #fff !important;
      color: #000 !important;
      background-image: none !important;
    }
    .tcms-nav .btn-outline-light:hover,
    .tcms-nav .btn-outline-light:focus,
    .tcms-nav .btn-outline-light:active {
      border-color: #000 !important;
      background: #000 !important;
      color: #fff !important;
      background-image: none !important;
    }
    .nav-tabs .nav-link {
      background: #fff !important;
      color: #000 !important;
      background-image: none !important;
    }
    .nav-tabs .nav-link.active,
    .nav-tabs .nav-link:focus,
    .nav-tabs .nav-link:hover {
      border-color: #000 !important;
      background: #fff !important;
      color: #000 !important;
      background-image: none !important;
    }
    .tcms-offcanvas,
    .tcms-offcanvas .offcanvas-header,
    .tcms-offcanvas .offcanvas-body,
    .tcms-offcanvas .list-group-item,
    .dashboard-sidebar-backdrop {
      background: #000 !important;
      background-image: none !important;
      color: #fff !important;
    }
    .tcms-offcanvas .list-group-item:hover,
    .tcms-offcanvas .list-group-item.active {
      background: #000 !important;
      color: #fff !important;
      border-color: #fff !important;
    }
    [class^="digest-"],
    [class*=" digest-"],
    [class^="dashboard-"],
    [class*=" dashboard-"],
    [class^="analytics-"],
    [class*=" analytics-"],
    [class^="chat-directory-"],
    [class*=" chat-directory-"],
    [class^="broadcast-"],
    [class*=" broadcast-"],
    [class^="automation-"],
    [class*=" automation-"],
    [class^="acp-"],
    [class*=" acp-"],
    [class^="health-"],
    [class*=" health-"] {
      background: #fff !important;
      background-image: none !important;
    }
    .landing-lang-switch,
    .landing-eyebrow,
    .landing-trust,
    .landing-preview,
    .landing-preview-row,
    .landing-panel,
    .landing-expand,
    .landing-faq details {
      background: #fff !important;
      background-image: none !important;
    }
    .landing-security,
    .landing-security-diagram,
    .landing-security-node {
      background: #000 !important;
      background-image: none !important;
    }
    .landing-lang-switch a.active {
      background: #000 !important;
      color: #fff !important;
    }
