.elementor-5934 .elementor-element.elementor-element-a67ae63{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-20a9561 */:root {
  --orange: #ff7a3e;
  --navy:   #1b2048;
  --navy-light: #252d5c;
  --white:  #ffffff;
  --bg:     #f4f6fb;
  --border: #e2e6f0;
  --text:   #2e3660;
  --muted:  #8890b0;
}

/* ── card wrapper ── */
.card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(27,32,72,.12), 0 2px 8px rgba(27,32,72,.06);
  overflow: hidden;
  width: 100%;
}

/* ── header bar ── */
.card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 28px 36px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-header .logo-dot {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.card-header .logo-dot svg { width: 20px; height: 20px; fill: #fff; }
.card-header h1 {
  font-size: 35px !important;
  color: var(--white);
  letter-spacing: .01em;
}
.card-header p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

/* ── table ── */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

thead tr {
  background: #f0f3fa;
}
thead th {
  padding: 14px 20px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
}
thead th:first-child  { padding-left: 36px; text-align: left; }
thead th:nth-child(2),
thead th:nth-child(3) { text-align: center; }

/* sort icon */
.sort-icon {
  display: inline-block;
  margin-left: 4px;
  color: var(--orange);
  font-size: .65rem;
  vertical-align: middle;
}

/* body rows */
tbody tr {
  transition: background .18s ease, transform .18s ease;
}
tbody tr:nth-child(even) { background: #f8f9fd; }
tbody tr:hover {
  background: #fff3ec;
  transform: scale(1.005);
  box-shadow: 0 2px 12px rgba(255,122,62,.10);
  position: relative;
  z-index: 1;
}

tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }

/* name */
td.name-cell {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 36px;
}

/* icon cells */
td.icon-cell { text-align: center; }

/* disclosure link button */
.disc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.disc-link:hover {
  transform: translateY(-3px) scale(1.1);
}

/* IDPS icon */
.disc-link.idps {
  background: rgba(255,122,62,.12);
  color: var(--orange);
  border: 2px solid rgba(255,122,62,.3);
}
.disc-link.idps:hover {
  background: #fff;
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,122,62,.4);
  border-color: var(--orange);
}

/* Super icon */
.disc-link.super {
  background: rgba(27,32,72,.08);
  color: var(--navy);
  border: 2px solid rgba(27,32,72,.2);
}
.disc-link.super:hover {
  background: #fff;
  color: #fff;
  box-shadow: 0 6px 18px rgba(27,32,72,.35);
  border-color: #1b2048;
}

.disc-link svg { width: 18px; height: 18px; }

/* ── footer ── */
.card-footer {
  background: #f0f3fa;
  padding: 14px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.legend-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .72rem; color: var(--muted); font-weight: 500;
}
.legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 600px) {

  .card-header {
    padding: 18px 16px 16px;
    gap: 10px;
    align-items: flex-start;
  }
  .card-header h1 {
    font-size: 20px !important;
    line-height: 1.3;
  }
  .card-header p {
    font-size: .7rem;
  }
  .card-header .logo-dot {
    width: 32px; height: 32px;
    margin-top: 2px;
  }

  table {
    table-layout: fixed;
    width: 100%;
  }

  thead th {
    padding: 10px 8px;
    font-size: .62rem;
    letter-spacing: .04em;
    white-space: normal;
    word-break: keep-all;
  }
  thead th:first-child {
    padding-left: 16px;
    width: 50%;
  }
  thead th:nth-child(2),
  thead th:nth-child(3) {
    width: 25%;
    text-align: center;
  }

  tbody td {
    padding: 12px 8px;
  }

  td.name-cell {
    font-size: .8rem;
    padding-left: 16px;
    white-space: normal;
    word-break: break-word;
  }

  .disc-link {
    width: 34px;
    height: 34px;
  }
  .disc-link svg,
  .disc-link i {
    font-size: .85rem;
  }

  .card-footer {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .legend-item {
    font-size: .68rem;
  }
}/* End custom CSS */