/* #topPanel {
    bottom: 2px solid black;
} */

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

th {
  background-color: aquamarine;
}

tr:hover {
  background-color: #d6eeee;
}

#downloadBTN {
  margin-top: 20px;
}

#editDetails {
  position: relative;
  top: 0;
  right: 0;
  left: "40px";
}

.popup {
  display: none;
  position: fixed;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.popup-content {
  background-color: white;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  position: absolute;
  top: 70px; /* Adjust this value to control the distance from the top */
  left: 50%;
  transform: translateX(-50%);
}

.close {
  color: red;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content div {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content div:hover {
  background-color: #f1f1f1;
}

.dropdown.show .dropdown-content {
  display: block;
}

.dropdown-content label {
  cursor: pointer;
}

#displayListOfSubjects {
  overflow: scroll;
  height: 300px;
}

button {
  background-color: #008cba;
  color: aquamarine;
  padding: 5px 7px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.popup-content {
  max-height: 450px;
  overflow: scroll;
}
