

/* table scroll style */

.floating > main::-webkit-scrollbar {
  height: 10px;
}

/* Track */
.floating > main::-webkit-scrollbar-track {
  background: #dddddd;
}

/* Handle */
.floating > main::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
.floating > main::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* table design */

.tableFixHead {
  max-height: 250px;
  overflow-y: auto;
}

.tableFixHead thead {
  position: sticky; 
  top: 0; 
  z-index: 1;
}

/* 
table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

table.a thead {
  background-color: rgba(0, 0, 0, 0.5);
}
table.a th,
table.a td {
  padding: 5px 10px;
}

table.a tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.3);
} */

/* for tables with multiple height */
/* td > p {
  margin: 0;
}

td > select {
  border: none;
  padding: 0px 5px;
  background-color: transparent;
} */

