@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  text-overflow: ellipsis;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}
* select,
* input {
  all: unset;
  line-height: 1.2;
}
* input[type=submit] {
  text-align: center;
}
* select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><polygon points='5,7 10,12 15,7'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  background-size: 0.65rem auto;
}

html,
body {
  width: 100%;
  min-height: 100dvh;
  height: 100%;
}

body {
  display: flex;
}

nav {
  display: flex;
  flex-direction: column;
  background-color: hsla(0, 0%, 96%, 0.5);
  background-color: hsl(210, 30%, 20%);
  min-width: 200px;
  height: 100%;
}
nav header > a {
  padding: 10px;
  font-size: 1rem;
  color: hsl(32, 100%, 50%);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  display: flex;
}
nav header > a .logo {
  min-width: 2rem;
  width: 2rem;
  padding: 5px;
}
nav .menu {
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
nav .menu > a {
  position: relative;
  display: flex;
  align-items: center;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  margin: 5px;
  padding: 5px;
}
nav .menu > a img {
  min-width: 1.8rem;
  width: 1.8rem;
}
nav .menu > a p {
  padding-left: 10px;
  font-size: 1.2rem;
  text-align: center;
}
nav .botton-menu {
  margin: auto 0px 0px 0px;
  color: hsl(0, 0%, 100%);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
nav .botton-menu > #ur {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  white-space: nowrap;
}
nav .botton-menu > #btnResizeMenu {
  position: relative;
  width: 1.5rem;
  padding: 5px;
  margin: 5px;
}
nav .button:hover {
  background-color: #121a21;
  border-radius: 5px;
  cursor: pointer;
}

nav.menu-minimized {
  min-width: 50px;
}
nav.menu-minimized header > a > h1 {
  display: none;
}
nav.menu-minimized .menu > a > p {
  display: none;
}
nav.menu-minimized .menu > a > img {
  margin: auto;
}
nav.menu-minimized .botton-menu {
  margin: auto auto 0px auto;
}
nav.menu-minimized .botton-menu > #ur {
  display: none;
}

main {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: hsl(0, 0%, 10%);
  width: 100dvw;
}

.form-container,
#confirm-section {
  /* Skjul standard checkbox */
}
.form-container input,
.form-container a,
.form-container select,
#confirm-section input,
#confirm-section a,
#confirm-section select {
  cursor: pointer;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  background-color: white;
  color: black;
}
.form-container select,
#confirm-section select {
  border: none;
  border-radius: 5px;
  padding: 5px 2rem 5px 5px;
}
.form-container select:focus-visible,
#confirm-section select:focus-visible {
  outline: none;
}
.form-container input[type=submit],
.form-container a,
.form-container input[type=button],
#confirm-section input[type=submit],
#confirm-section a,
#confirm-section input[type=button] {
  border: none;
  color: black;
  background-color: hsl(32, 100%, 50%);
}
.form-container input[type=submit]:hover,
.form-container a:hover,
.form-container input[type=button]:hover,
#confirm-section input[type=submit]:hover,
#confirm-section a:hover,
#confirm-section input[type=button]:hover {
  background-color: #cc6d00;
}
.form-container input[type=text],
#confirm-section input[type=text] {
  border: none;
  border-radius: 5px;
}
.form-container input[type=text]:focus-visible,
#confirm-section input[type=text]:focus-visible {
  outline: none;
}
.form-container input:disabled,
#confirm-section input:disabled {
  background-color: hsl(0, 0%, 80%);
}
.form-container a,
#confirm-section a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.form-container .label-for-checkbox,
#confirm-section .label-for-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 0.25rem;
  flex-direction: row-reverse;
  justify-content: flex-end;
  /* Skjul standard checkbox */
}
.form-container .label-for-checkbox .custom-checkbox,
#confirm-section .label-for-checkbox .custom-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* Fjerner den oprindelige checkbox */
  width: 20px;
  height: 20px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-container .label-for-checkbox .custom-checkbox:checked,
#confirm-section .label-for-checkbox .custom-checkbox:checked {
  background-color: hsl(32, 100%, 50%);
}
.form-container .label-for-checkbox .custom-checkbox:checked::before,
#confirm-section .label-for-checkbox .custom-checkbox:checked::before {
  content: "✔";
  color: white;
}

#status-panel {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  position: absolute;
}
#status-panel .statistics-overview {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#status-panel .statistics-overview h3 {
  align-self: center;
}
#status-panel .statistics-overview > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.2rem;
  gap: 20px;
}
#status-panel > * {
  border-radius: 5px;
  margin: 0.2rem;
  padding: 5px 10px;
  font-size: 1.8rem;
  background-color: rgba(255, 255, 255, 0.3);
  color: hsl(0, 0%, 100%);
}
#status-panel #menu-minimized-ur {
  display: none;
}
#status-panel #menu-minimized-ur.show {
  display: flex;
  justify-content: center;
  font-size: 2rem;
}

#loading {
  display: flex;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: hsla(0, 0%, 0%, 0.5);
  padding: 0px;
  top: 0px;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
}

#notificationList {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#notificationList .error {
  color: red;
}
#notificationList .notification {
  border: 1px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  max-width: 500px;
  margin: 0.2rem;
  border-radius: 5px;
  background-color: white;
  animation: slideIn 0.5s ease;
}
#notificationList .notification p {
  margin: auto 0.4rem;
  padding: 0.4rem 0rem;
}
#notificationList .notification > span {
  margin: 0.4rem 0rem 0.4rem 0.4rem;
}
#notificationList .notification .close-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px 5px 5px 0px;
  background-color: hsl(32, 100%, 50%);
  cursor: pointer;
}
#notificationList .notification .close-btn > span {
  color: hsl(0, 0%, 100%);
}
#notificationList .notification .close-btn:hover {
  background-color: #cc6d00;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section h1 {
  font-size: 1.5rem;
  border-bottom: 2px solid hsl(32, 100%, 50%);
  margin-bottom: 1rem;
}

#praktik-section {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  height: 100%;
  width: 100%;
}
#praktik-section .praktik-container {
  border-radius: 10px;
  margin: 10px;
  padding: 1rem;
  color: hsl(0, 0%, 100%);
  background-color: hsl(210, 30%, 20%);
  border: 1px groove hsl(32, 100%, 50%);
}
#praktik-section .praktik-container > * {
  padding: 0px 0.25rem;
}
#praktik-section .form-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.5rem;
}
#praktik-section .form-container > div {
  display: flex;
  flex-direction: column;
}
#praktik-section table {
  margin: 0px 0.25rem;
  border-collapse: collapse;
  margin-top: 1rem;
  border-radius: 5px;
  background-color: hsl(0, 0%, 100%);
  color: black;
  width: calc(100% - 0.5rem);
}
#praktik-section table th,
#praktik-section table td {
  padding: 5px;
}
#praktik-section table th {
  background-color: hsl(32, 100%, 50%);
  color: black;
}
#praktik-section table th:nth-child(1) {
  border-radius: 5px 0px 0px 0px;
}
#praktik-section table th:nth-child(3) {
  border-radius: 0px 5px 0px 0px;
}
#praktik-section table tr:nth-child(even) {
  background-color: #e6e6e6;
}
#praktik-section table tr:last-child {
  border-radius: 0px 0px 5px 5px;
}
#praktik-section table tr:last-child td:nth-child(1) {
  border-radius: 0px 0px 0px 5px;
}
#praktik-section table tr:last-child td:nth-child(3) {
  border-radius: 0px 0px 5px 0px;
}

#confirm-section {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: hsla(0, 0%, 0%, 0.6);
  top: 0px;
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
}
#confirm-section > #confirm-container {
  background-color: hsl(210, 30%, 20%);
  border-radius: 10px;
  border: hsl(32, 100%, 50%) 1px solid;
  color: hsl(0, 0%, 100%);
  margin: 0.5rem;
  position: relative;
}
#confirm-section > #confirm-container > #confirm-input-container {
  display: flex;
  align-items: center;
}
#confirm-section > #confirm-container > #confirm-input-container > * {
  flex: 1;
}
#confirm-section > #confirm-container > #confirm-buttons-container {
  display: flex;
}
#confirm-section > #confirm-container > #confirm-buttons-container > .confirm-buttons {
  width: 100%;
  text-align: center;
}
#confirm-section > #confirm-container > div {
  padding: 5px 0px;
}
#confirm-section > #confirm-container > div > * {
  margin: 5px;
}

#form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#form-section .form-container {
  border-radius: 10px;
  margin: 10px;
  padding: 1rem;
  color: hsl(0, 0%, 100%);
  background-color: hsl(210, 30%, 20%);
  border: 1px groove hsl(32, 100%, 50%);
}
#form-section .form-container > * {
  padding: 0px 0.25rem;
}
#form-section .form-container > div {
  margin: 1rem 0px;
  display: flex;
  flex-direction: column;
}
#form-section .form-container > .checkbox-container {
  flex-direction: row;
  gap: 1.25rem;
}

.countdown {
  animation: color-transition 1s infinite;
}

@keyframes color-transition {
  0% {
    color: #FF0000;
  }
  49% {
    color: #FF0000;
  }
  50% {
    color: hsl(0, 0%, 100%);
  }
  100% {
    color: hsl(0, 0%, 100%);
  }
}/*# sourceMappingURL=Style.css.map */