*{
    box-sizing: border-box;
}

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

.card{
    display: flex;
    flex: auto;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid black;
    border-radius: 10px;
    padding: 25px;
    margin: 20px;
    font-size: 4em;
    cursor: default;
    align-items: center;
    text-align: center;
}

.smallCard{
    display: flex;
    flex: auto;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid black;
    border-radius: 10px;
    padding: 15px;
    margin: 10px;
    font-size: 2em;
    cursor: default;
    align-items: center;
    text-align: center;
}

.selected{
    border-color: green;
    border-width: 8px;
}

.typeList{
    display: flex;
    flex-wrap: wrap;
}

.card:hover{
    background-color: aqua;
}



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

.user{
    border: 1px solid black;
    width: fit-content;
    padding: 20px;
    background-color: aliceblue;
    font-size: 2em;
    margin: 20px;
}

.text{
    font-size: 2em;
}

.hidden{
    display: none;
}

.menu{
    position: fixed;
    top: 120px;
    left: 8px;
    width: 400px;
    z-index: 1;
    border: 1px solid black;
    background-color: aliceblue;
}

.menu > div{
    font-size: 2em;
    padding: 20px;
}

.menu > div:hover{
    background-color: aqua;
}

table{
    border: 1px solid black;
    width: 90vw;
    text-align: center;
}

th {
    font-size: 1.7em;
    background-color: white;
    padding: 5px
}

tr:nth-child(odd){
    background-color: aliceblue;
}

td:last-child{
    text-align: left;
}

td{
    font-size: 1.7em;
    padding: 5px;
}

td > div {
    padding: 1rem;
    font-size: 2rem;
    border: 1px solid black;
    border-radius: 30px;
    width: 8em;
    text-align: center;
}

.table-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

tr:hover {
    background-color: aqua;
}

.overdue{
    color: red;
    font-weight: bold;
}

.done{
    color: green;
    font-weight: bold;
}

.pending{
    color: yellow;
    font-weight: bold;
}

.pending{
    color: black;
    font-weight: bold;
}

.observed{
    color: red;
    font-weight: bold;
}

.ticket{
    width: 20px;
    height: 20px;
    background-color: blue;
    margin-left: 40%;
}

.info{
    background-color: yellow;
}

.info:hover{
    background-color: yellowgreen;
}

option{
    font-size: 1.2em;
}

.green{
    background-color: green;
}

.red{
    background-color: red;
}

.modal{
    position: fixed;
    width: 98vw;
    border: 3px solid red;
    border-radius: 5vw;
    z-index: 2;
    background: white;
    padding: 2em;
}

.blur{
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: white;
    opacity: 0.9;
}

.login{
    width: 30%;
    height: 80px;
    font-size: 50px;
    padding: 20px;
}

.noInput{
    pointer-events: none;
}

.obsText{
    width: 80%;
    min-height: 5em;
    text-align: center;
}

.small-title{
    font-size: 2em;
}

.image{
    max-width: 200px;
    max-height: 200px;
}

.disabled {
    color: grey;
    pointer-events: none;
}

.itemSelect {
    font-size: 0.5em;
}

.stagInput {
    font-size: 2em;
    padding: 20px;
    margin: 20px;
    align-items: center;
}

.stagInput input{
    margin-left: 30px;
    width: 50%;
    font-size: 1em;
}

.stagInput select{
    margin-left: 30px;
    font-size: 1em;
}