table {
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 0 5px grey;
    text-align: center;
    border-radius: 5px;
    padding: 10px;;
}

table tbody tr {
    margin: 5px;
}

table a {
    text-decoration:none;
    color:white;
    padding: 5px;
    border-radius:5px;
    box-shadow: 0 0 5px grey;
}

.red {
    background-color: red;
}

.orange {
    background-color: orange;
}

form{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    border-radius:5px;
}

form input[type='text'] {
    width: 15%;
    padding: 5px;
    box-shadow: 0 0 5px grey;
    border: none;
    border-radius: 5px;
}

form input[type='submit'] {
    width: 15%;
    padding: 10px 5px;
    box-shadow: 0 0 5px grey;
    background-color: royalblue;
    color:white;
    border: none;
    border-radius: 5px;
}

.succes {
    margin: 0 auto;
    color:white;
    padding: 5px;
    border-radius:5px;
    box-shadow: 0 0 5px grey;
}


