/* Admin UI (Soft-light SaaS) */
:root{
  /* Soft light palette */
  --bg: #eef1f6;
  --surface: #f6f8fc;
  --panel: #ffffff;
  --card: rgba(255,255,255,1);
  --card2: rgba(255,255,255,1);
  --border: rgba(15, 23, 42, .08);
  --text: rgba(15, 23, 42, .92);
  --muted: rgba(30, 41, 59, .62);
  --muted2: rgba(30, 41, 59, .46);
  --primary: #2563eb;    /* subtle blue */
  --primary2: #1d4ed8;
  --danger: #e11d48;
  --success: #059669;
  --warn: #d97706;
  --ring: rgba(37, 99, 235, .18);
  --shadow: 0 18px 55px rgba(15, 23, 42, .10);
  --shadow2: 0 10px 26px rgba(15, 23, 42, .08);
  --radius: 14px;
  --radius-sm: 10px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(37,99,235,.08), transparent 55%),
    radial-gradient(700px 420px at 100% 20%, rgba(2,132,199,.06), transparent 55%),
    linear-gradient(180deg, var(--bg), #e9edf5 65%);
}

a{ color: inherit; cursor: pointer; }
button{ cursor: pointer; }
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: .92em;
}

.app{
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246,248,252,.78);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.brand-mark{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(2,132,199,.70));
  box-shadow: 0 10px 26px rgba(37,99,235,.18);
}
.brand-title{
  display:flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.brand-title strong{
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-title span{
  font-size: .78rem;
  color: var(--muted2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Topbar responsive
 * Burger is hidden by default on desktop. Use compound selector so it
 * wins specificity vs the generic `.icon-btn` rules defined later. */
.icon-btn.topbar-burger{
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.icon-btn.topbar-burger .fa-bars,
.icon-btn.topbar-burger .fa-xmark{
  width: 18px;
  height: 18px;
  transition: transform .18s ease, opacity .12s ease;
}
.icon-btn.topbar-burger[aria-expanded="true"]{
  background: rgba(37,99,235,.10);
  border-color: rgba(37,99,235,.30);
  color: rgba(29,78,216,.98);
}
.icon-btn.topbar-burger[aria-expanded="true"] .fa-bars{ transform: rotate(90deg); opacity: 0; }
.icon-btn.topbar-burger .fa-xmark{
  position: absolute;
  opacity: 0;
  transform: rotate(-90deg);
}
.icon-btn.topbar-burger[aria-expanded="true"] .fa-xmark{ opacity: 1; transform: rotate(0); }

@media (max-width: 760px){
  .topbar-inner{
    position: relative;
    flex-wrap: nowrap;
    align-items: center;
    padding: 12px 14px;
    gap: 10px;
  }
  .brand{ flex: 1 1 auto; }
  .icon-btn.topbar-burger{ display: inline-flex; }

  .topbar-actions{
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(15,23,42,.14), 0 2px 8px rgba(15,23,42,.06);
    padding: 8px;
    transform-origin: top right;
    animation: topbarMenuIn .16s ease-out;
  }
  .topbar-actions.is-open{ display: flex; }
  .topbar-actions .btn{
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 10px 12px;
    border-radius: 10px;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .topbar-actions .btn:hover{
    background: rgba(37,99,235,.08);
    color: rgba(29,78,216,.95);
    border-color: transparent;
  }
  .topbar-actions .btn-primary{
    background: rgba(37,99,235,.10);
    color: rgba(29,78,216,.98);
  }
  /* Inline the user-menu inside the burger panel: hide the round
     avatar trigger and unfold the dropdown contents as part of the
     main menu (avoids the nested floating dropdown overlap).
     Group the username header + actions in a single visual block
     and indent the action items so they read as sub-items. */
  .topbar-actions .user-menu{
    width: 100%;
    display: block;
    margin-top: 6px;
  }
  .topbar-actions .user-avatar{ display: none; }
  .topbar-actions .user-dropdown{
    position: static;
    display: block !important;
    min-width: 0;
    width: 100%;
    background: rgba(248,250,252,.7);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 12px;
    box-shadow: none;
    padding: 6px;
  }
  .topbar-actions .user-dropdown-head{
    padding: 8px 12px 10px;
    border-bottom: 1px dashed rgba(15,23,42,.12);
    margin: 0 0 6px;
    background: transparent;
  }
  .topbar-actions .user-dropdown-name{
    font-size: .95rem;
  }
  .topbar-actions .user-dropdown a,
  .topbar-actions .user-dropdown button{
    padding: 10px 12px;
    border-radius: 10px;
  }
  .topbar-actions .user-dropdown a:hover,
  .topbar-actions .user-dropdown button:hover{
    background: rgba(37,99,235,.08);
  }
  .topbar-actions .user-dropdown .danger:hover{
    background: rgba(225,29,72,.08);
  }

  .brand-title strong{ font-size: .95rem; }
  .brand-title span{ display:none; }
  .brand-mark{ width: 32px; height: 32px; border-radius: 10px; }
}

@keyframes topbarMenuIn{
  from{ opacity: 0; transform: translateY(-6px); }
  to  { opacity: 1; transform: translateY(0); }
}

@media (max-width: 420px){
  .topbar-inner{ padding: 10px 12px; }
  .topbar-actions .btn{ font-size: .92rem; padding: 10px 12px; }
}

.container{
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 18px;
}

.page-title{
  margin: 14px 0 10px;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: .2px;
}
.subtle{
  color: var(--muted2);
  font-size: .88rem;
}

.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
}
.card-body{ padding: 18px; }

.grid{
  display:grid;
  gap: 14px;
}
.grid-2{
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px){
  .grid-2{ grid-template-columns: 1fr; }
}

.alert{
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  margin: 0 0 12px;
  background: rgba(255,255,255,.85);
}
.alert-success{
  border-color: rgba(5,150,105,.18);
  background: rgba(5,150,105,.08);
}
.alert-error{
  border-color: rgba(225,29,72,.16);
  background: rgba(225,29,72,.08);
}
.alert-title{
  font-weight: 700;
  margin-bottom: 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  color: var(--text);
  text-decoration:none;
  font-weight: 700;
  cursor:pointer;
  transition: transform .05s ease, background .12s ease, border-color .12s ease;
}
.btn-sm{
  padding: 8px 10px;
  border-radius: 11px;
  font-size: .92rem;
}
.btn:hover{
  background: rgba(255,255,255,.92);
  border-color: rgba(15, 23, 42, .12);
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  border-color: rgba(37,99,235,.18);
  color: #fff;
  background: linear-gradient(180deg, rgba(37,99,235,.92), rgba(29,78,216,.92));
}
.btn-primary:hover{ background: linear-gradient(180deg, rgba(37,99,235,.98), rgba(29,78,216,.98)); }
.btn-danger{
  border-color: rgba(225,29,72,.18);
  background: rgba(225,29,72,.10);
}
.btn-ghost{
  background: rgba(255,255,255,.55);
}
.btn-link{
  background: transparent;
  border: none;
  padding: 0;
  font-weight: 700;
  color: rgba(37,99,235,.92);
  cursor:pointer;
}
.btn-link:hover{ color: rgba(29,78,216,.98); text-decoration: underline; }

.field label{
  display:block;
  font-size: .86rem;
  color: var(--muted);
  margin: 0 0 6px;
  font-weight: 650;
}
.input, select.input{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline: none;
  transition: box-shadow .12s ease, border-color .12s ease, background .12s ease;
}
.input::placeholder{ color: rgba(15,23,42,.35); }
.input:focus, select.input:focus{
  border-color: rgba(37,99,235,.30);
  box-shadow: 0 0 0 4px var(--ring);
  background: rgba(255,255,255,1);
}
.hint{
  color: var(--muted2);
  font-size: .85rem;
  margin-top: 6px;
}

fieldset{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  margin: 0;
  background: rgba(255,255,255,.72);
}
legend{
  padding: 0 8px;
  color: rgba(226,232,240,.85);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: .92rem;
}

.table-card{
  overflow: hidden;
}

/* DataTables - make it look like a SaaS table */
table.dataTable{
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  background: transparent;
}
.table-card .card-body{
  padding: 14px;
}
.table-wrap{
  border-radius: 14px;
  overflow: hidden;
  border: none;
}
.table-wrap table.dataTable{
  border: none !important;
}
.table-wrap table.dataTable thead th:first-child{ padding-left: 18px !important; }
.table-wrap table.dataTable tbody td:first-child{ padding-left: 18px !important; }
.table-wrap table.dataTable thead th:last-child{ padding-right: 14px !important; }
.table-wrap table.dataTable tbody td:last-child{ padding-right: 10px !important; }

.dataTables_wrapper, .dt-container, div.dt-container{
  color: var(--text);
}
div.dt-container .dt-search input,
div.dt-container .dt-length select{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline: none;
}
div.dt-container .dt-search input:focus,
div.dt-container .dt-length select:focus{
  border-color: rgba(37,99,235,.30);
  box-shadow: 0 0 0 4px var(--ring);
}
div.dt-container .dt-paging button{
  border-radius: 12px !important;
  border: 1px solid var(--border) !important;
  background: rgba(255,255,255,.85) !important;
  color: var(--text) !important;
}
div.dt-container .dt-paging button:hover{
  background: rgba(255,255,255,1) !important;
}
div.dt-container .dt-paging button.disabled,
div.dt-container .dt-paging button[aria-disabled="true"]{
  cursor: not-allowed !important;
  opacity: .55;
}
div.dt-container .dt-info, div.dt-container .dt-length, div.dt-container .dt-search{
  color: var(--muted) !important;
}

table.dataTable thead th{
  background: rgba(248,250,252,1) !important;
  color: rgba(15,23,42,.85) !important;
  border-bottom: 1px solid var(--border) !important;
  font-size: .83rem;
  font-weight: 750;
  letter-spacing: .2px;
}
table.dataTable tbody td{
  background: rgba(255,255,255,1) !important;
  border-bottom: 1px solid rgba(148,163,184,.12) !important;
  font-size: .86rem;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
table.dataTable tbody tr:hover td{
  background: rgba(37,99,235,.08) !important;
}
table.dataTable tbody tr.dt-row-selected td{
  background: rgba(37,99,235,.12) !important;
}

/* First column as "link-like" (IO Name style) */
.dt-link{
  color: rgba(37,99,235,.92);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

/* Kebab action button + menu (right aligned) */
.dt-actions{
  text-align: right;
  white-space: nowrap;
}
.kebab{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(248,250,252,1);
  color: rgba(30,41,59,.75);
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, transform 50ms ease;
}
.kebab:hover{
  background: rgba(241,245,249,1);
  border-color: rgba(15,23,42,.16);
}
.kebab:active{ transform: translateY(1px); }
.kebab span{
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}
.dt-menu{
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(15,23,42,.14);
  padding: 6px;
  display: none;
  z-index: 50;
}
.dt-menu *{
  font-family: var(--font);
  font-size: .90rem;
  line-height: 1.15;
}
.dt-menu.show{ display: block; }
.dt-menu a,
.dt-menu button{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: rgba(15,23,42,.86);
  text-decoration: none;
  font-weight: 650;
  cursor: pointer;
}
.dt-menu button.is-disabled,
.dt-menu button:disabled{
  opacity: .55;
  cursor: not-allowed;
}
.dt-menu a:hover,
.dt-menu button:hover{
  background: rgba(37,99,235,.08);
}
.dt-menu .danger{
  color: rgba(225,29,72,.92);
}
.dt-menu .danger:hover{
  background: rgba(225,29,72,.08);
}

/* Submenu (Token) */
.dt-submenu{
  position: relative;
}
.dt-submenu-btn{
  width: 100%;
}
.dt-submenu-caret{
  color: rgba(30,41,59,.55);
  font-weight: 900;
}
.dt-submenu-pop{
  position: absolute;
  left: calc(100% + 8px);
  top: -6px;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(15,23,42,.14);
  padding: 6px;
  display: none;
  z-index: 60;
}
.dt-submenu-pop.show{ display: block; }
.dt-submenu.open-left .dt-submenu-pop{
  left: auto;
  right: calc(100% + 8px);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: .78rem;
}
.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(226,232,240,.45);
}
.dot-ok{ background: var(--success); }
.dot-warn{ background: var(--warn); }
.dot-bad{ background: var(--danger); }

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, .92);
  color: #f8fafc;
  padding: .62rem .85rem;
  border-radius: 14px;
  box-shadow: var(--shadow2);
  font-size: .9rem;
  border: 1px solid rgba(148,163,184,.18);
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
  transition: opacity 180ms ease, transform 220ms ease;
  z-index: 9999;
}
.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.toast-danger{
  background: rgba(225, 29, 72, .10);
  color: rgba(136, 19, 55, .98);
  border-color: rgba(159, 18, 57, .55);
}

/* Copyable code */
td.accountid-cell code{
  cursor:pointer;
  user-select:none;
  color: rgba(15,23,42,.88);
}
td.accountid-cell code:hover{ text-decoration: underline; }

/* Modal (used by log detail) */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .38);
  backdrop-filter: blur(2px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  z-index: 1000;
  overflow-y: auto;
}
.modal-overlay.show{ display: flex; }
.modal-card{
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .28);
  overflow: hidden;
  animation: modalIn .16s ease-out;
}
@keyframes modalIn{
  from{ transform: translateY(-6px); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}
.modal-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(248, 250, 252, 1);
}
.modal-title{
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: .2px;
}
.modal-close{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.9);
  color: rgba(30,41,59,.7);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover{ background: #fff; border-color: rgba(15,23,42,.16); }
.modal-body{
  padding: 16px 18px 18px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.kv-grid{
  display: grid;
  grid-template-columns: 160px 1fr;
  row-gap: 8px;
  column-gap: 14px;
  font-size: .9rem;
}
@media (max-width: 640px){
  .kv-grid{ grid-template-columns: 1fr; row-gap: 2px; }
  .kv-grid .kv-key{ margin-top: 8px; }
}
.kv-key{
  color: var(--muted);
  font-weight: 650;
}
.kv-val{
  color: var(--text);
  word-break: break-word;
}
.kv-val code{
  background: rgba(15,23,42,.05);
  padding: 2px 6px;
  border-radius: 6px;
}
.kv-section-title{
  grid-column: 1 / -1;
  font-weight: 750;
  margin: 10px 0 2px;
  color: var(--text);
  border-top: 1px dashed var(--border);
  padding-top: 10px;
}
.kv-section-title:first-child{
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.log-body-preview{
  grid-column: 1 / -1;
  background: rgba(15,23,42,.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .85rem;
  max-height: 260px;
  overflow: auto;
}
.log-sent-body-wrap{
  grid-column: 1 / -1;
}
.log-body-iframe{
  width: 100%;
  min-height: 320px;
  max-height: 70vh;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  display: block;
}

/* Generic icon-only action button (used for table row actions) */
.icon-btn{
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(248,250,252,1);
  color: rgba(30,41,59,.78);
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 50ms ease;
  font-size: 13px;
  padding: 0;
}
.icon-btn:hover{
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.22);
  color: rgba(29,78,216,.95);
}
.icon-btn:active{ transform: translateY(1px); }
.icon-btn i{ line-height: 1; }

th.dt-actions-head, td.dt-actions{
  text-align: center !important;
  white-space: nowrap;
}

/* Login page helpers */
.auth-shell{
  min-height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 22px;
}
.auth-card{
  width: 100%;
  max-width: 440px;
}
.auth-head{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 12px;
}
.auth-head h1{
  margin:0;
  font-size: 1.15rem;
  letter-spacing:.2px;
}
.auth-sub{
  margin:0;
  color: var(--muted2);
  font-size: .9rem;
}
.divider{
  height: 1px;
  background: rgba(148,163,184,.18);
  margin: 14px 0;
}

/* User menu (avatar + dropdown) in topbar */
.user-menu{
  position: relative;
  display: inline-flex;
  align-items: center;
}
.user-avatar{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(135deg, rgba(37,99,235,.95), rgba(29,78,216,.95));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,.22);
  transition: transform 80ms ease, box-shadow 120ms ease, filter 120ms ease;
}
.user-avatar:hover{
  filter: brightness(1.05);
  box-shadow: 0 6px 16px rgba(37,99,235,.28);
}
.user-avatar:active{ transform: translateY(1px); }
.user-avatar:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px var(--ring), 0 4px 12px rgba(37,99,235,.22);
}
.user-avatar-initial{
  font-weight: 750;
  font-size: .95rem;
  letter-spacing: .3px;
  line-height: 1;
}
.user-dropdown{
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
}
.user-dropdown-head{
  padding: 8px 10px 10px;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 4px;
}
.user-dropdown-name{
  font-weight: 750;
  color: var(--text);
  font-size: .92rem;
  word-break: break-all;
}
.user-dropdown-sub{
  font-size: .78rem;
  color: var(--muted);
  margin-top: 2px;
}
.user-menu-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---------------------------------------------------------------
 * Font Awesome local SVG shim
 * The bundled `vendor/fontawesome/css/all.min.css` references
 * webfonts that are not shipped with this project. Instead, render
 * icons by masking the per-icon SVG files in `svgs-full/`.
 * Only the icons actually used in the app are mapped below; add a
 * new line here when you start using a new `fa-*` class.
 * --------------------------------------------------------------- */
.fa-solid, .fa-regular, .fa-brands,
.fas, .far, .fab{
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  background-color: currentColor;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.fa-solid::before, .fa-regular::before, .fa-brands::before,
.fas::before, .far::before, .fab::before{ content: none !important; }

.fa-key{
  -webkit-mask-image: url(/vendor/fontawesome/svgs-full/solid/key.svg);
          mask-image: url(/vendor/fontawesome/svgs-full/solid/key.svg);
}
.fa-right-from-bracket{
  -webkit-mask-image: url(/vendor/fontawesome/svgs-full/solid/right-from-bracket.svg);
          mask-image: url(/vendor/fontawesome/svgs-full/solid/right-from-bracket.svg);
}
.fa-magnifying-glass{
  -webkit-mask-image: url(/vendor/fontawesome/svgs-full/solid/magnifying-glass.svg);
          mask-image: url(/vendor/fontawesome/svgs-full/solid/magnifying-glass.svg);
}
.fa-bars{
  -webkit-mask-image: url(/vendor/fontawesome/svgs-full/solid/bars.svg);
          mask-image: url(/vendor/fontawesome/svgs-full/solid/bars.svg);
}
.fa-xmark{
  -webkit-mask-image: url(/vendor/fontawesome/svgs-full/solid/xmark.svg);
          mask-image: url(/vendor/fontawesome/svgs-full/solid/xmark.svg);
}

