@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", "Noto Sans TC", sans-serif;
}

#students::-webkit-scrollbar {
  width: 6px;
}


#students::-webkit-scrollbar-track {
  background: #071128;
}

#students::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0cceff, #2f20ff);
}

#students::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #390cff, #ff20ff);
}

#students::-webkit-scrollbar-button {
  display: none;
}

body {
  font-size: 16px;
  padding: 1.8rem;
  margin: 0;
  background: linear-gradient(180deg,#061226 0%, #071028 50%, #071427 100%);
  position: relative;
  overflow-x: hidden;
  height: 100vh;
  justify-content: start;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#container {
  border: 1px solid #fff;
  border-radius: 20px;
  color: rgb(255, 255, 255);
  padding: 0 1.8rem;
  display: flex;
  width: fit-content;
  height: 100%;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  position: relative;
}

#titlezone {
  padding: 2rem 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#students {
  overflow-y: auto;
  padding: 0 2.5rem;
}

table {
  border-collapse: collapse; /* 合併邊框 */
  width: 100%;
}

.link {
  text-decoration: none;
  color: rgb(255, 255, 255);
  border-radius: 8px;
  overflow: hidden;
  padding: 0.1rem 0.2rem;
  position: relative;
  transition: color 0.3s ease;
}

.link:hover {
  color: rgb(165, 165, 165);
  transition: color 0.3s ease;
}


th, td {
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 3rem;
  border-bottom: 1px solid #ffffff62;
}