
.contacttable {
    display: flex;
    flex-direction: column;
    gap: 10px; /* spacing between rows */
  }
  
  .contactrow {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center; /* vertically center both cells */
  }
  
  .contactcell {
    padding: 0;
  }
  
  .contactimage-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
  }
  
  .contactimage-cell img {
    display: block;
  }
  
  .contacttext-cell {
    text-align: left;
    white-space: nowrap; /* keep to one line */
  }