
/* ___________REGISTER SECTION____________________ */


.register {
  position: fixed;
  width: 100vw;
  height: 0;
  left: 0;
  top: 0;
  z-index: 4;
  pointer-events: none;
  padding: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: height 0.5s ease, padding 0.5s ease;
}

.register-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  border-bottom: 0px solid #000;
  pointer-events: none;

}

.register.show {
  height: 100vh;
  padding: 1vw;
  pointer-events: auto;
  transition-delay: 0.24s, 0.24s;
}

.register.show ~ .backdrop {
  z-index: 5;
  background-color: rgb(233, 21, 21);
}


.register.show .register-container::after {
  animation: registerBorderPulse 0.6s ease-in-out forwards;
}

@keyframes registerBorderPulse {
  0% {
    border-bottom-width: 0px;
  }

  40% {
    border-bottom-width: 5px;
  }

  100% {
    border-bottom-width: 0px;
  }
}




.list {
  position: relative;

  top: 0;
  left: 0;
  width: auto;
  padding: 1vw;
  overflow-x: hidden;
  overflow-y: auto;
}

.titel {
  position: absolute;
  top: 40vw;
  left: 1vw;
}

input {
  color: rgba(255, 255, 255, 0.478);
}


.register-container {
  position: inherit;
  font-size: 0.8rem;
  color: #000;
  background-color: rgb(244, 244, 244);
  position: absolute;
  width: 90vw;
  height: 80vh;
  top: 10vh;
  overflow: scroll;
  scrollbar-width: none;
  border-radius: 8px;
  clip-path: inset(0 round 8px);
  overflow-x: hidden;


}

::-webkit-scrollbar {
  display: none;
}



table th:nth-child(1),
table td:nth-child(1) {
  width: 1%;
}

table th:nth-child(2),
table td:nth-child(2) {
  width: 3%;
}

table th:nth-child(3),
table td:nth-child(3) {
  width: 18%;
}

table th:nth-child(4),
table td:nth-child(4) {
  width: 4%;
}

table th:nth-child(5),
table td:nth-child(5) {
  width: 17%;
}


table th:nth-child(6),
table td:nth-child(6) {
  width: 35%;
}

table th:nth-child(7),
table td:nth-child(7) {
  width: 14%;
}


.theme {
  text-align: center;
}

input[type="checkbox"] {
  width: 0.8rem;
  height: 0.8rem;
  accent-color: rgb(21, 0, 255);
  cursor: pointer;
}




table {
  border-collapse: collapse;
  table-layout: fixed;
  justify-content: center;
  padding-left: 1px;
}

td,
th {
  height: 1vh;
}

th {
  text-align: left;
  padding-left: 0.5vw;
  font-size: 1rem;
}

thead {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 0 0 #000;
  z-index: 333;
  filter: blur(0px);
  border-radius: 8px;
}


tr {
  transition: all 0.1s ease;
  filter: blur(0px);
  color: rgb(0, 0, 0);
  letter-spacing: 0rem;
  background-color: rgb(244, 244, 244);

}

.project-theme{
  text-align: center;
}

tr.check {
  background-color: rgb(193, 193, 193);
}




tr:hover {
  background-color: rgba(193, 193, 193, 0.187);
  font-size: 1rem;
  filter: blur(0px);
  letter-spacing: 0.05rem;
}


/* optional: Hover nur für nicht-gecheckte Zeilen */
tr:not(.checked):hover {
  background-color: rgb(220, 220, 220);
}




td {
  /* padding-left: 0.5vw; */
  padding-right: 0;
  padding-left: 5px;
  align-items: center;
  border-bottom: #000 solid 0.5px;
  border-left: none;
  border-top: none;
  justify-content: center;
  text-align: center;


  text-align: left;
  transition: font-size 0.1s ease, filter 0.5s ease;
}

td:first-child {
  justify-content: center;
  filter: blur(0px);

}
