body{
      margin-bottom: 10rem;
}
.content {
      width: 100%;
      max-width: 560px;
      margin: 10px auto;
    }

    /* HEADER */

    .page-header {
      margin-bottom: 18px;
    }

    .page-title {
      font-size: 30px;
      font-weight: 600;
      color: #111;
    }

    .page-count {
      font-size: 30px;
      font-weight: 400;
      color: #bdbdbd;
      margin-left: 6px;
    }

    /* SEARCH */

    .search-wrap {
      position: relative;
      margin-bottom: 14px;
    }

    .search-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .search-input {
      width: 100%;
      border: none;
      outline: none;
      background: #f7f7f7;
      border-radius: 16px;
      padding: 15px 16px 15px 42px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      color: #111;
    }

    .search-input::placeholder {
      color: #bdbdbd;
    }

    /* ACTIONS */

    .action-row {
      display: flex;
      gap: 10px;
      margin-bottom: 26px;
    }

    .btn-create {
      flex: 1;
      height: 50px;
      border: none;
      border-radius: 999px;
      background: #111;
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;

      transition:
        background 0.2s ease,
        transform 0.15s ease;
    }

    .btn-create:hover {
      background: #2a2a2a;
      transform: translateY(-1px);
    }

    .btn-download {
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 16px;
      background: #111;
      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;

      transition:
        background 0.2s ease,
        transform 0.15s ease;
    }

    .btn-download:hover {
      background: #2a2a2a;
      transform: translateY(-1px);
    }

    /* LABEL */

    .section-label {
      font-size: 10px;
      font-weight: 500;
      color: #b5b5b5;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    /* CONTACT ROW */

    .contact-row {
      display: flex;
      align-items: center;
      gap: 14px;

      padding: 14px 14px;
/*      border-bottom: 1px solid grey;*/
      border-radius: 20px;
      margin-bottom: 4px;

      cursor: pointer;

      transition:
        background 0.22s ease,
        transform 0.15s ease,
        box-shadow 0.22s ease;
    }

    .contact-row:hover {
      background: #f0f5fc;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.045);
    }

    .contact-row:active {
      transform: scale(0.995);
    }

    .contact-row:hover .contact-name {
      color: #000;
    }

    .contact-row:hover .row-dots {
      background: rgba(0,0,0,0.04);
    }

    /* AVATAR */

    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 16px;
      font-weight: 600;

      flex-shrink: 0;
    }

    .av-n {
      background: #ede7f6;
      color: #6a1b9a;
    }

    /* Blue */
    .av-t {
        background: #e3f2fd;
        color: #1565c0;
    }

    /* Green */
    .av-b {
        background: #e8f5e9;
        color: #2e7d32;
    }

    /* Orange */
    .av-s {
        background: #fff3e0;
        color: #e65100;
    }

    /* Pink */
    .av-a {
        background: #fce4ec;
        color: #880e4f;
    }

    /* Gray */
    .av-j {
        background: #f5f5f5;
        color: #616161;
    }

    /* Purple */
    .av-p {
        background: #f3e5f5;
        color: #6a1b9a;
    }

    /* Teal */
    .av-q {
        background: #e0f2f1;
        color: #00695c;
    }

    /* Red */
    .av-r {
        background: #ffebee;
        color: #c62828;
    }

    /* Indigo */
    .av-i {
        background: #e8eaf6;
        color: #283593;
    }

    /* Amber */
    .av-m {
        background: #fff8e1;
        color: #ff8f00;
    }

    /* Cyan */
    .av-c {
        background: #e0f7fa;
        color: #00838f;
    }

    /* Lime */
    .av-l {
        background: #f9fbe7;
        color: #827717;
    }

    /* Brown */
    .av-w {
        background: #efebe9;
        color: #4e342e;
    }

    /* Deep Orange */
    .av-d {
        background: #fbe9e7;
        color: #d84315;
    }

    /* Blue Gray */
    .av-g {
        background: #eceff1;
        color: #455a64;
    }

    /* Violet */
    .av-v {
        background: #ede7f6;
        color: #4527a0;
    }

    /* Rose */
    .av-z {
        background: #fff1f2;
        color: #be123c;
    }

    /* Emerald */
    .av-e {
        background: #ecfdf5;
        color: #047857;
    }

    /* Sky */
    .av-y {
        background: #f0f9ff;
        color: #0369a1;
    }

    /* Slate */
    .av-k {
        background: #f8fafc;
        color: #475569;
    }

    /* INFO */

    .contact-info {
      flex: 1;
      min-width: 0;
    }

    .contact-name {
      font-size: 15px;
      font-weight: 500;
      color: #111;

      transition: color 0.2s ease;
    }

    .contact-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;

      margin-top: 4px;
    }

    .contact-date {
      font-size: 11px;
      color: #bdbdbd;
    }

    /* TAGS */

    .contact-tag {
      font-size: 10px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 999px;
      line-height: 1;
    }

    .tag-design {
      background: #f3e8ff;
      color: #7c3aed;
    }

    .tag-tech {
      background: #dbeafe;
      color: #2563eb;
    }

    .tag-marketing {
      background: #dcfce7;
      color: #15803d;
    }

    .tag-sales {
      background: #ffe7d6;
      color: #ea580c;
    }

    .tag-founder {
      background: #fce7f3;
      color: #be185d;
    }

    .tag-partner {
      background: #fef3c7;
      color: #b45309;
    }

    /* DOTS */

    .row-dots {
      display: flex;
      gap: 3px;

      padding: 8px;
      border-radius: 10px;

      flex-shrink: 0;

      transition: background 0.2s ease;
    }

    .dot-sm {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: #7a7a7a;
    }

    @media (max-width: 480px) {
      .page-title,
      .page-count {
        font-size: 26px;
      }

      .contact-row {
        padding: 13px 12px;
      }
    }