table.admin-pictures {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;

  img {
    max-width: 180px;
  }

  thead {
    background-color: #ffa500;
  }

  th,
  td {
    border: 1px solid #fba303;
    padding: 10px;
  }

  tr:nth-child(even) {
    background-color: #ffd0a3;
  }

  tr:nth-child(odd) {
    background-color: #ffe5c2;
  }

  th {
    font-size: 18px;
    border: 1px solid white;
    color: black;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    padding: 20px;
    background-color: #ffa500;
  }

  td {
    font-size: 16px;
    text-align: center;
    vertical-align: middle;
  }
}

@media (max-width: 768px) {
  table.admin-pictures {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
