* {
  margin: 0;
  transition: all 1s;
}
body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.table {
  width: 100%;
}
.navBar {
  background: #250048;
  padding: max(2vh, 1vw);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.navItems {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 3vw;
}
table {
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
  border: 5px solid #fff;
  border-bottom-width: 3px;
  border-collapse: collapse;
  outline: 3px solid #ffd300;
  font-size: 15px;
  background: #fff !important;
}
th {
  margin: 0;
  text-align: center;
  font-weight: bold;
  padding: 7px;
  background: #ffd300;
  border: none;
  font-size: 15px;
  border-bottom: 3px solid #ffd300;
}
table td {
  border-right: 1px solid blanchedalmond;
  text-align: center;
  padding: 10px 7px 7px;
  font-size: 15px;
}
tr:not(tr:nth-child(1)) {
  cursor: pointer;
}
tr:not(tr:nth-child(1)):hover {
  background: #9898e0;
}
table tbody tr:nth-child(even) {
  background: rgb(236, 235, 235);
}
tr:nth-child(even):hover {
  background: #9898e0;
}

.showAddModal {
  border: none;
  background: lavender;
  border-radius: 20px;
  cursor: pointer;
  width: 100px;
  height: 50px;
}
.showAddModal:hover {
  background: #9898e0;
  box-shadow: #9898e0 0 0 20px 0;
}
.redirectBtn {
  border: none;
  background: lavender;
  border-radius: 20px;
  cursor: pointer;
  width: 100px;
  height: 50px;
}
.redirectBtn:hover {
  background: #9898e0;
  box-shadow: #9898e0 0 0 20px 0;
}
.logoBtn {
  margin-right: 10%;
  background: none;
  cursor: pointer;
  border: none;
}
.logoImg {
  max-width: 200px;
  width: 100%;
  height: 90px;
  filter: invert(1);
}

.modal {
  border-radius: 25px;
  font-size: 24px;
  font-weight: bold;
  padding: 1% 5%;
  text-align: center;
  background: #9898e0;
  position: absolute;
  left: 39%;
  top: 20%;
  display: none;
  flex-direction: column;
  z-index: 11;
}
.modalInputs {
  font-weight: normal;
  width: auto;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.inputLabel {
  font-size: 18px;
  width: 90%;
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.postBtn {
  width: 90%;
  background: #250048;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  margin: 5%;
}
.deleteBtn {
  font-size: 18px;
  width: 90%;
  background: #250048;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  margin: 5%;
}
.updBtn {
  font-size: 18px;
  width: 90%;
  background: #250048;
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  margin: 5%;
}
.postBtn:hover {
  filter: invert(1);
}
.updBtn:hover {
  background: #99ec99;
  color: black;
}
.deleteBtn:hover {
  background: #f56464;
  color: black;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
