body {
  margin: 1.6em auto 1.6em;
  width: 95%;
  max-width: 900px;
}

form {
  display: grid;
  gap: 12px;
  max-width: 100%;
}
label {
  display: grid;
  gap: 6px;
}
input,
select {
  font: inherit;
  padding: 8px;
}
button {
  font: inherit;
  padding: 4px;
}
[type="submit"] {
  margin-top: 4px;
  padding: 6.8px;
  border: solid 1px rgba(175, 184, 193, 0.2);
  border-radius: 2px;
  background-color: #4283ca;
  color: white;
}
[type="submit"]:hover,
[type="submit"]:focus {
  background-color: #3976bd;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 100%;
}

@media (max-width: 550px) {
  .row2 {
    grid-template-columns: 1fr;
  }
}

.controls {
  margin: 16px 0;
  display: flex;
  gap: 12px;
  align-items: center;
}

.tableWrap {
  margin-top: 12px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}
thead th {
  text-align: left;
  border: 0px;
  border-bottom: 2px solid #d8dee4;
  padding: 10px;
  background: #fafafa;
}
tbody td {
  border: 0px;
  border-bottom: 1px solid #eaedf0;
  padding: 10px;
  vertical-align: top;
}

.colTitle {
  width: 60%;
}
.colVenue {
  width: 14%;
}
.colYear {
  width: 10%;
  white-space: nowrap;
}
.colCited {
  width: 10%;
  white-space: nowrap;
}
