.coucil-contacts-page {
  padding-bottom: var(--grid-gap);
  width: 100%;
  overflow-x: auto;
}

.coucil-contacts-page__buttons {
  display: grid;
  gap: 10px 20px;
  grid-template-columns: repeat(auto-fit, minmax(0, max-content));
  justify-content: flex-end;
  margin: 20px 0;
}

.coucil-contacts-page .data-table tr td {
  min-width: 250px;
}

.coucil-contacts-page .data-table tr td:first-child {
  width: 250px;
}

@media screen and (max-width: 735px) {
  .coucil-contacts-page__buttons {
    grid-template-columns: 1fr;
  }

  .council-contacts-page .data-table tr td,
  .council-contacts-page .data-table tr th {
    display: block;
    min-width: 250px;
    word-break: break-word;
  }

  .council-contacts-page .data-table tr td:first-child {
    width: 100%;
    border-bottom: none;
    border-top: none;
  }
}
