body {
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    background: #dfdfdf;
    color: black;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 20px;
}
a {
    color: #6e8f17;
    text-decoration: none;
}
.btn {
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    line-height: 30px;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    z-index: 10;
    margin: 10px;
    border-radius: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 4px 4px 10px 1px rgba(99,99,99,1);
    -webkit-box-shadow: 4px 4px 10px 1px rgba(99,99,99,1);
    -moz-box-shadow: 4px 4px 10px 1px rgba(99,99,99,1);
    border: 2px solid black;
}
.btn:hover {
    -webkit-box-shadow: 3px 3px 10px 0px rgba(0,0,0,1);
    -moz-box-shadow: 3px 3px 10px 0px rgba(0,0,0,1);
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,1);
}

.btn-green {
    background: #95C11F;
    color: white;
}
.table {
    background: white;
    margin: auto;
    width: 1200px;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}
.table tr {
    border-bottom: 1px solid gray;
}
.table tr:hover{
    background: #ffec00;
}
.table td {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
}
.table td:nth-last-child(3) {
    font-size: 16px;
}
.block-center {
    margin: auto;
    margin-top: 30px;
    width: 100%;
    text-align: center;
}
.ui-menu {
    border: 1px solid grey;
    border-top: none;
    border-bottom: none;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    width: 599px;
}
.ui-menu a {
    color: black;
    text-decoration: none;
}
.ui-menu li {
    padding: 7px;
    border-bottom: 1px solid gray;
    cursor: pointer;
}
.ui-menu li:hover {
    background-color: #f6f6f6;
}
.ui-menu-item .label {
    font-size: 18px;
}
.ui-menu-item .description {
    font-size: 11px;
    color: #5c5c5c;
}
.ui-menu-item .page {
    font-size: 11px;
    float: right;
}
.text-center {
    text-align: center;
}
* {
    box-sizing: border-box;
}
/* Style the search field */
form.search input[type=text]:focus {
    outline: none;
}
form.search input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    float: left;
    width: 80%;
    background: #f1f1f1;
    margin-bottom: 15px;
}


/* Style the submit button */
form.search button {
    float: left;
    width: 20%;
    padding: 10px;
    background: #f32121;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none; /* Prevent double borders */
    cursor: pointer;
}

form.search button:hover {
    background: #da0b0b;
}

/* Clear floats */
form.search::after {
    content: "";
    clear: both;
    display: table;
}
.search {
    max-width: 600px;
}
@media only screen
and (max-device-width: 600px)
{
    body {
        width: 100%;
        font-size: 26px;
    }
    .search {
        max-width: calc(100% - 50px);
    }
    .table {
        width: calc(100% - 20px);
    }
}
