@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  text-overflow: ellipsis;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}
* select,
* input,
* .btn {
  all: unset;
  line-height: 1.2;
  margin: 2px;
}
* input:disabled,
* .btn:disabled {
  cursor: not-allowed;
  background-color: hsl(32, 100%, 35%);
  border-color: hsl(32, 100%, 35%);
}
* 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;
}

.btn {
  text-align: center;
  border-radius: 5px;
  background-color: hsl(32, 100%, 50%);
  border: 1px solid hsl(32, 100%, 50%);
  padding: 5px;
  margin: 2px;
  cursor: pointer;
}

.split {
  display: flex;
  flex-direction: row !important;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}
.split > * {
  min-width: 0;
}
.split .s40 {
  width: 40%;
}
.split .s60 {
  width: 60%;
}
.split .s75 {
  width: 75%;
}
.split .s25 {
  width: 25%;
}
.split .s50 {
  width: 50%;
}

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

body {
  display: flex;
  flex-direction: row;
}

nav {
  display: flex;
  flex-direction: column;
  background-color: hsla(0, 0%, 96%, 0.5);
  background-color: hsl(210, 30%, 20%);
  height: 100%;
}
nav header {
  margin: 5px;
}
nav header > a {
  padding: 5px;
  font-size: 1rem;
  color: hsl(32, 100%, 50%);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  display: flex;
  gap: 5px;
}
nav header > a .logo {
  width: 2.5rem;
}
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: hsl(210, 30%, 18%);
  border-radius: 5px;
  cursor: pointer;
}

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 {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: hsl(0, 0%, 10%);
  overflow: auto;
  /* scroll kun i main */
  width: 100%;
}

main {
  /* Skjul standard checkbox */
}
main input,
main a,
main select,
main button {
  cursor: pointer;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  background-color: hsl(210, 30%, 20%);
  color: white;
  border: white 1px solid;
}
main input:focus-visible,
main a:focus-visible,
main select:focus-visible,
main button:focus-visible {
  outline: 1px solid hsl(32, 100%, 50%);
}
main select {
  padding: 5px 2rem 5px 5px;
}
main input[type=submit],
main a,
main input[type=button],
main button,
main .btn {
  color: black;
  background-color: hsl(32, 100%, 50%);
}
main input[type=submit]:hover,
main a:hover,
main input[type=button]:hover,
main button:hover,
main .btn:hover {
  background-color: hsl(32, 100%, 45%);
}
main input:disabled {
  background-color: hsl(0, 0%, 80%);
}
main a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
main .input-container {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
}
main .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 */
}
main .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;
}
main .label-for-checkbox .custom-checkbox:checked {
  background-color: hsl(32, 100%, 50%);
}
main .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%;
  z-index: 2000;
}
#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: hsl(32, 100%, 55%);
}
@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: hsl(0, 0%, 90%);
}
#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;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.dialog-box {
  background-color: hsl(210, 30%, 20%);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  max-height: 100%;
  overflow-y: auto;
  color: hsl(0, 0%, 100%);
}

.confirm-text-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  font-size: 1.2rem;
  gap: 0.2rem;
}
.confirm-text-container > hr {
  border-color: hsl(32, 100%, 50%);
  margin: 10px 0px;
}

.dialog-select-container {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dialog-confirm-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dialog-confirm-container > button {
  padding: 5px 10px;
}

#form-section,
.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#form-section .form-container,
.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 > *,
.form-section .form-container > * {
  padding: 0px 0.25rem;
}
#form-section .form-container > div,
.form-section .form-container > div {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
}
#form-section .form-container > .checkbox-container,
.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 */