@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@300;400&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

header {
  background-color: #333333;
}
header nav ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}
header nav ul li {
  width: 15%;
  padding: 8px 0;
}
header nav ul li img {
  width: 20px;
  display: block;
}
header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 2px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
header nav ul .dropdown {
  display: inline-block;
  position: relative;
  z-index: 555;
}
header nav ul .dropdown .dropdown-options {
  display: none;
  position: absolute;
  overflow: auto;
  background-color: #333333;
  border-radius: 5px;
  z-index: 555;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
}
header nav ul .dropdown .dropdown-options a {
  display: block;
  padding: 5px;
  text-decoration: none;
  padding: 20px 40px;
  z-index: 555;
}
header nav ul .dropdown .dropdown-options a:hover {
  color: #0a0a23;
  background-color: #ddd;
  border-radius: 5px;
}
header nav ul .dropdown:hover .dropdown-options {
  display: block;
}
header nav ul li:hover {
  background-color: #222222;
}

/* Table Styles */
.table-wrapper {
  margin: 10px 70px 70px;
  box-shadow: 0px 35px 50px rgba(0, 0, 0, 0.2);
}

.buttons-spacing {
  margin-right: 70px;
  margin-left: 70px;
}

.fl-table {
  border-radius: 5px;
  font-size: 12px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  background-color: white;
}
.fl-table td {
  border-right: 1px solid #f8f8f8;
  font-size: 12px;
}
.fl-table td, .fl-table th {
  text-align: center;
  padding: 8px;
}
.fl-table thead th {
  color: #ffffff;
  background-color: #4FC3A1;
}
.fl-table thead th:nth-child(odd) {
  color: #fff;
  background: #324960;
}
.fl-table tr:nth-child(even) {
  background: #f8f8f8;
}/*# sourceMappingURL=styles.css.map */