*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-family: 'Roboto', 'Arial', Helvetica, sans-serif;
}

article {
    padding: 15px;
}

table, th, td {
  border:1px solid black;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #ddd;
  padding: 8px;
}

table tr:nth-child(even){background-color: #f2f2f2;}

table tr:hover {background-color: #ddd;}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #386baf;
  color: white;
}

ul.reset,
ul.reset li,
ul.reset ul li {
   margin:0;
   padding: 0;
   text-indent: 0;
   list-style-type: none;
}

.tables-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.table-title {
    font-size: 1.3rem;
    margin-block-end: 5px;
}

.gobal-title {
    font-size: 2.3rem;
    margin-block-end: 10px;
}

.error {
    background-color: rgb(255, 197, 197);
    border-radius: 3px;
    border: 2px solid rgb(255, 135, 135);
    padding: 15px;
}