body {
    margin: 0;
    background-color: #0d1117;
}

.btn,
button,
select,
input[type='file'] {
    cursor: pointer;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 14px;
    width: fit-content;
    white-space: nowrap;
    color: white;
    background-color: #212830;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    user-select: none;
    font-weight: 400 !important;
    text-decoration: none !important;
}

.btn:hover,
button:hover,
select:hover,
input[type='file']:hover {
  background-color: #262c36;
}

.btn-primary {
  background-color: #238636;
}

.btn-primary:hover {
  background-color: #29903b;
}

.btn-group {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

a {
  text-decoration: none;
  color: #4493f8;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

a.header-link {
  color: white;
  font-weight: inherit;
}

a.header-link:hover {
  text-decoration: none;
}

form,
form div {
    display: flex;
    flex-direction: column;
}

form label {
    margin: 1rem 0;
}

textarea {
    resize: none;
}

input,
textarea {
    display: block;
    width: 100%;
    background: none;
    color: white;
    border: none;
    padding: 0.5rem 0;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

input:hover,
textarea:hover {
    border-bottom: solid 1px rgba(255, 255, 255, 0.7);
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom: solid 1px #65b94e;
}

input[type='checkbox'] {
    display: inline;
    width: auto;
}

.checkbox-group label {
    margin: 0.25rem 0;
}

.modal-bg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0000003f;
}

.modal-bg > .modal {
    padding: 4rem;
    background-color: #0d1117;
    min-width: 40vw;
    width: fit-content;
    border-radius: 16px;
}
