body {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    height: 100vh;
    background-color: #f5f5f5;
    font-family: Roobert-Medium, sans-serif;
}


p {
    font-family: Roobert-Light, sans-serif;
    /*font-size: 19pt;*/
}

a {
    color: #5598b4;
    text-decoration: none;
    text-underline: None;
}

a:visited {
    color: #aa97a7;
}

a:hover {
    color: #5598b4;
    text-decoration: underline;
}

dt {
  font-weight: bold;
}

dl, dd {
  font-size: 0.9rem;
}

dd {
  margin-bottom: 1em;
}


#nav-ribbon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    background-color: #1a1d24;
    color: #f5f4f5;
    padding: .75em;
    margin: 0;
    letter-spacing: 0.02em;
}

.main-container {
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: 0;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    max-height: 100%;
}

#title {
    padding: 0;
    margin: 0;
    font-size: 36pt;
    letter-spacing: 0.02em;
}

#nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding-right: 1.5em;
    margin: 0;
}

#nav-links > li {
    margin: 0 0 0 1em;
    font-size: 24pt;
}

#signed-in {
    display: flex;
    flex-direction: column;
    flex-basis: fit-content;
    align-items: end;
}
#signed-in > span {
    font-size: 10pt;
    margin-top: 0.5em;
}
#signed-in > a {
    font-size: 24pt;
}

#ticket-list-page {
  display: flex;
  flex-direction: column;
}

#ticket-list-page > h1{
  margin-top: 1em;
  margin-left: 2em;
}
#ticket-list-page > .headers {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 4em;
  margin-right: 5em;
  margin-bottom: 2em;
  margin-left: 5em;
}
#ticket-list-page > .headers > div {
  padding: 1em;
  /* border: solid 1px #E8E8E9; */
  background: #f5f5f5;
  box-shadow: 0.3em 0.3em 1em rgb(0 0 0 / 30%)
}

#kpis {
  display: grid;
  grid-gap: 1em;
}
.kpi-value {
  grid-column: 1;
  font-weight: 600;
  font-size: larger;
}
.kpi-name {
  grid-column: 2;
}

#kpis > a {
  grid-column: 1/3;
}

#forbidden {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#login {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#login-form {
  min-width: 300px;
  display: grid;
  grid-gap: 2em;
  margin: 3em;
  padding-top: 1em;
  padding-left: 3em;
  padding-right: 3em;
  padding-bottom: 2em;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto auto auto auto;
  border-radius: 4px;
  box-shadow: 0.3em 0.3em 1em rgb(0 0 0 / 30%);
  background: white;
}


#login-form > h1 {
  grid-column: 1/3;
  text-align: center;
}
#login-form > label {
  text-align: left;
}
#login-form > #forgot-password {
  grid-column: 1/3;
  text-align: center;
  font-weight: bold
}
#login-form > button {
  grid-column: 1/3;
}


#claim-next-ticket {
  font-family: Roobert, sans-serif;
  font-weight: 600;
  color: black;
  background-color:#F09C4E;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5em 1em;
  gap: 10px
}



.table {
  margin-left: 5em;
  margin-right: 5em;
  text-align: center;
  border: solid 1px #E8E8E9;
  border-collapse: collapse;
  box-shadow: 0.3em 0.3em 1em rgb(0 0 0 / 30%)
}

#my-assignments {
  margin-left: 0;
  margin-right: 0
}
.assignment {
    font-size: 18pt;
}

.table > thead {
  background: #1a1d24;
  color: #f5f5f5;
  border: none;
}
th {
  font-weight: normal;
  font-size: large;
  padding: 0.5em;
}
td {
  padding: 0.5em;
}
tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
  border: none;
}

tbody tr:nth-child(even) {
  background-color: white;
  border: none;
}

.work-in-progress {
    border-left: solid 10px;
    border-image: repeating-linear-gradient( -15deg, yellow, yellow 10px, black 10px, black 20px) 20;
}
.top-line-border {
    border-top: solid 10px;

    border-image: repeating-linear-gradient(120deg,
    #f5f5f5 0,
    #A0AFBB 1px /* transition from previous white stripe */, #A0AFBB .1em,
    #f5f5f5 calc(.25em + 1px) /* from blue to white */, #f5f5f5 .5em
  ) 17;
}
.bottom-line-border {
    border-bottom: solid 10px;

    border-image: repeating-linear-gradient(120deg,
    #f5f5f5 0,
    #A0AFBB 1px /* transition from previous white stripe */, #A0AFBB .1em,
    #f5f5f5 calc(.25em + 1px) /* from blue to white */, #f5f5f5 .5em
  ) 17;
}
.password-reset {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1em;
  align-items: center;
}
.password-reset > form {
  gap: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.password-change {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1em;
  align-items: center;
}

.password-change > form {
  display: grid;
  grid-gap: 0.5em;
  grid-template-columns: auto auto ;
}
.password-change > form > label {
  grid-column: 1;
  align-self: center;
  justify-content: right;
}
.password-change > form > input{
  grid-column: 2;
}
.password-change > form > .error{
  color: red;
  grid-column: 2
}
.password-change > form > .submitButton {
  grid-column: 1/3;
  font-family: Roobert;
  font-weight: 600;
  background-color:#F09C4E;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  padding: 0.5em;
  gap: 10px
}

#image_container {
  transition-duration: 0.3s;
}

#label_image {
  z-index: 1;
  max-width: 100%;
  transition-duration: 0.3s;
  border: #f5f5f5 solid 2px;
}

.error {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f8d7da;
  color: #721c24;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 80%;
  max-width: 600px;
}


.spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #000;
    width: 50px;
    height: 50px;
    animation: spin 2.5s cubic-bezier(0.68, -1.55, 0.27, 4.55) infinite;

}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#signed-in {
    display: flex;
    flex-direction: column;
    flex-basis: fit-content;
    align-items: end;
}

#signed-in > a {
    font-size: 24pt;
}

#signed-in > span {
    font-size: 10pt;
    margin-top: 0.5em;
}

.todo {
  border: 10px double #721c24;
}