.div {
    background-color: rgba(0, 139, 139, 0.518);
    border-width: 5px;
    border-color: rgba(0, 139, 139, 0.518);
    border-style: inset;
    color: rgb(30, 30, 30);
    box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.552);
    border-radius: 10px;
}

.content {
    margin-left: 10px;
    margin-bottom: 10px;
}

table {
    margin-top: 5px;
    background-color: rgba(221, 221, 221, 0.671);
    border-radius: 5px;
    padding: 5px;
}

table tr th {
    border-width: 1px;
    background-color: rgb(94, 94, 94);
    border-style: solid;
    border-color: rgb(151, 151, 151);
    border-radius: 3px;
    padding: 5px;
}

table tr td {
    border-width: 1px;
    background-color: rgb(199, 199, 199);
    border-style: solid;
    border-color: rgb(151, 151, 151);
    border-radius: 3px;
    padding: 5px;
    font-size: 15px;
    text-align: center;
}

table tr td select{
    text-align: center;
    margin: 0;
    width: 45px;
    height: 18px;
}

button {
    background-color: rgb(94, 94, 94);
    border-radius: 5px;
}

button:hover {
    background-color: rgb(199, 199, 199);
}

button:active {
    background-color: gray;
}