* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  /* max-width: 1200px; */
  margin: 33px 25px;
  background-color: rgb(45, 45, 45);
  color: white;
  font-size: 21px;
}

#form {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

#form__container {
  display: flex;
  align-items: center;
  justify-content: center;
}

#email {
  margin: 0px 25px 0 8px;
}
#password {
  margin: 0 8px;
}

#amountFound {
  margin-right: 15px;
}

#paidFound {
  margin-right: 15px;
}

#buttonSignOut,
#buttonShowList {
  display: flex;
  width: 75px;
  text-align: center;
  margin-top: 5px;
  padding: 3px;
}

table {
  border-collapse: collapse;
  overflow-x: auto;
  max-width: 1100px;
  text-align: center;
  margin: 15px auto;
}

tr {
  background-color: white;
  color: black;
}

tr:nth-child(2n) {
  background-color: rgb(110, 110, 110);
  color: rgb(255, 255, 255);
}

th,
td {
  border-bottom: 1px solid black;
  padding: 15px 10px;
  /* background-color: white; */
  max-width: 200px;
  overflow-wrap: break-word;
}

.additional {
  border-left: 2px solid black;
  border-right: 2px solid black;
  text-align: center;
  min-width: 250px;
}

#div__search {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}

#selectSort {
  margin: 0 15px 0 5px;
}

.btn-delete {
  cursor: pointer;
  padding: 5px;
  border: none;
  border-radius: 5px;
  background-color: rgb(110, 41, 41);
  font-weight: 700;
}

.btn-delete:hover {
  transform: scale(1.1);
}
