*{
    margin: 0;
    padding: 0;
}

html{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(255, 201, 201, 0.863);
}

hr{
    margin: 1em 0 1em;
}

body{
    margin-left: 1em;
    margin-right: 1em;
}

nav>ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    gap: 1em;
    margin-top: 1em;
}

.search-form{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
}

table, th, td{
    border: solid 1px black;
    padding: 0.8em;
    border-collapse: collapse;
    margin: 1em 0 1em;
}

.seperator{
    border-top: solid black 5px;
}

.in-use{
    color: red;
}

a, button{
    border: solid 1px black;
    background-color: rgb(255, 110, 110);
    color: white;
    padding: 0.3em;
    cursor: pointer;
    font-size: 16px;
}

.orders{
    border: solid 0.5px black;
    padding: 1em;
    margin: 1em 0 1em;
}

.order-list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style-type: none;
}

.order-right{
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.order-items{
    width: 100%;
}

.order-item-domain{
    width: 70vw;
}

th, td{
    text-align: left;
}