body {
    margin: 0;
}

#mainContener {
    max-width: 800px;
    min-height: 25px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20pt;
    background-color: rgb(163, 83, 83);
    border-radius: 5px;
    box-shadow: 5px 5px 0px 0px rgb(58, 58, 58);
}

header {
    height: 150px;
}

@media (max-width: 800px) {
    #mainContener {
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }
    header {
        height: 50px;
    }
}

html {
    background-color: rgb(199, 199, 199);
    font-family: Arial, Helvetica, sans-serif;
}

#links {
    text-decoration: none;
    color: black;
}

footer {
 
    bottom: 10px;
    padding: 10px 10px 10px 10px;
    width: calc(100% - 20px);
}

footer #links {
    width: 80px;
    float: left;
}

footer #links a {
    text-decoration: none;
    color: black;
    font-size: 10pt;
    line-height: 1.5;
    background-color: rgb(163, 163, 163);
    text-align: center;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 2px 2px 0px 0px rgb(58, 58, 58);
    display: block;
}

footer #links a:hover {
    color: white;
    background-color: rgb(165, 28, 28);
    box-shadow: 5px 5px 0px 0px rgb(58, 58, 58);
}

#author {
    float: right;
}

h1 {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

#mainContener {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
}

#Button-Add {
    color: black;
    font-size: 10pt;
    line-height: 1.5;
    background-color: rgb(163, 163, 163);
    text-align: center;
    border-radius: 8px;
    padding: 5px;
    outline: none;
    border: none;
    box-shadow: 2px 2px 0px 0px rgb(58, 58, 58);
    min-width: 100px;
    margin: 0 auto;
    margin-top:10px;
    display: block;
}

#Button-Add:hover {
    background-color: rgb(199, 199, 199);
    box-shadow: 5px 5px 0px 0px rgb(58, 58, 58);
}

.field label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12pt;
}

.toDoForm {
    width: 100%;
}

.field {
    padding: 5px;
    margin: auto;
    width: 250px;
    flex-basis: auto;
}

.field input {
    min-width: 250px;
    overflow: hidden;
    border-radius: 5px;
    border-style: none;
    padding-top: 5px;
    padding-bottom: 5px;
    box-shadow: 2px 2px 0px 0px rgb(58, 58, 58);
}

.field input:focus {
    outline: none
}

.toDoOUT {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.toDoElement td {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: white;
    box-shadow: 2px 2px 0px 0px rgb(58, 58, 58);
    text-align: center;
}
tr{
    height: 50px;
}
.toDoElement:first-child td:first-child {
    border-top-left-radius: 5px;
}

.toDoElement:first-child td:last-child {
    border-top-right-radius: 5px;
}

.toDoElement:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

.toDoElement:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

table {
    width: 100%;
    border-collapse: separate;
    font-size: 12pt;
}

.interpret_out{
overflow: hidden;
}
.price_out{
    width:15%;
    overflow: hidden;
}
.datetime_out{
    width:33%;
    overflow: hidden;
}

.delet{
    width: 80px;
}
.deletButton, .editButton{
    margin: auto;    
    display: block;
    background: transparent;
    border: transparent;
    padding: 10px;
    width: 80%;
    height: 80%;
    border-radius: 5px
}
.deletButton:hover{
    background-color: rgb(165, 28, 28);
    color: white;
}
.editButton:hover{
    background-color: rgb(28, 165, 39);
    color: white;
}