
h2 {
  margin-bottom: 15px;
  color: #333;
}

.styled-table {
  width: 80%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;

  font-family: "Varela Round", sans-serif;

}

.styled-table thead {
  background: #009879;
  color: white;
  text-align: left;
  font-weight: bold;
}

.styled-table th,
.styled-table td {
  padding: 12px 15px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background: #f3f3f3;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #009879;
}

.styled-table td.active {
  color: green;
  font-weight: bold;
}

.styled-table td.inactive {
  color: red;
  font-weight: bold;
}
