.contact-index-app {
  min-width: 0;
}

.contact-index-path {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 9px;
  padding: 4px 7px;
  border: 2px solid;
  border-color: var(--window-dark) var(--window-light) var(--window-light) var(--window-dark);
  background: #eee1ea;
  color: var(--muted);
  font-family: var(--pixel);
  font-size: 8px;
}

.contact-index-path .cursor-block {
  width: 6px;
  height: 10px;
  margin-left: 3px;
}

.contact-file-table {
  table-layout: fixed;
}

.contact-file-table th:nth-child(1),
.contact-file-table td:nth-child(1) {
  width: 25%;
}

.contact-file-table th:nth-child(2),
.contact-file-table td:nth-child(2) {
  width: 47%;
}

.contact-file-table th:nth-child(3),
.contact-file-table td:nth-child(3) {
  width: 28%;
}

.contact-row-link {
  display: inline-block;
  padding: 2px 1px;
}

.contact-account {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
}

.contact-row-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.contact-inline-action {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--link);
  font: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.contact-inline-action:hover,
.contact-inline-action:focus-visible {
  color: #7b1dc0;
  background: rgba(222, 78, 154, .13);
  outline: 1px dotted var(--ink);
}

.contact-inline-action.is-copied {
  color: #247840;
}

.contact-index-hint {
  margin: 12px 0 0;
  padding: 7px 8px;
  border-left: 3px solid #b95c94;
  background: #f4e6ef;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .contact-file-table {
    font-size: 16px;
  }

  .contact-file-table th,
  .contact-file-table td {
    padding: 7px 6px;
  }

  .contact-file-table th:nth-child(1),
  .contact-file-table td:nth-child(1) {
    width: 24%;
  }

  .contact-file-table th:nth-child(2),
  .contact-file-table td:nth-child(2) {
    width: 48%;
  }

  .contact-file-table th:nth-child(3),
  .contact-file-table td:nth-child(3) {
    width: 28%;
  }

  .contact-row-actions {
    display: grid;
    justify-items: start;
    gap: 4px;
  }
}

@media (max-width: 440px) {
  .contact-file-table {
    font-size: 15px;
  }

  .contact-file-table th:nth-child(1),
  .contact-file-table td:nth-child(1) {
    width: 26%;
  }

  .contact-file-table th:nth-child(2),
  .contact-file-table td:nth-child(2) {
    width: 50%;
  }

  .contact-file-table th:nth-child(3),
  .contact-file-table td:nth-child(3) {
    width: 24%;
  }

  .contact-file-table .file-icon {
    display: none;
  }
}