body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Roboto", sans-serif; /* Corrected font-family property */
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header {
  display: flex;
  width: 100%;
  height: 40px;
  background-color: #333;
  color: white;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.manual-shadow {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.tables-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.table-wrapper {
  flex: 1;
  /* min-width: 300px; */
  margin: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border: 1px solid #ddd;
  padding: 8px;
}

th {
  background-color: #333;
  color: white;
}

tr {
  background-color: rgba(255, 255, 255, 0.5);
}

.change {
  color: red;
}

.change-add,
.change-remove {
  color: white;
  transition: all 1s;
  -webkit-transition: all 1s linear;
}

.change-add-active {
  color: red;
}

.change-remove {
  color: red;
}

.change-remove-active {
  color: white;
}

.change-up {
  color: green;
}

.change-up-add,
.change-up-remove {
  color: white;
  transition: all 1s;
  -webkit-transition: all 1s ease-in;
}

.change-up-add-active {
  color: green;
}

.change-up-remove {
  color: green;
}

.change-up-remove-active {
  color: white;
}
