.background-radial-center {
    background: radial-gradient(ellipse at center center, #017219 0%, #000000 100%, #000000 100%) repeat fixed 0 0;
    background-size: cover;
}

.background-linear {
    background: linear-gradient(23deg, #003358, #0094ff);
}

.boxshadow {
    -moz-box-shadow: 4px 4px 16px rgb(0, 0, 0, 0.4);
    -webkit-box-shadow: 4px 10px 16px rgb(0, 0, 0, 0.4);
    box-shadow: 4px 4px 16px rgb(0, 0, 0, 0.4);
}

.boxshadowlarge {
    -moz-box-shadow: 10px 10px 48px rgb(0, 0, 0, 0.4);
    -webkit-box-shadow: 10px 10px 48px rgb(0, 0, 0, 0.4);
    box-shadow: 10px 10px 48px rgb(0, 0, 0, 0.4);
}

body {
    font-family: Helvetica, Arial, Sans-Serif;
}

body .container,
body .container-fluid {
    color: white !important;
}

.reset {
    margin: 0;
    padding: 0;
}

button {
    color: black;
}

.col-centered {
    width: 800px;
    float: none;
    margin: 0 auto;
}

#HallOfFame {
    border: 1px solid black !important;
    border-radius: 5px;
    background-color: rgba(0, 0, 255, 0.5);
}

div.panel-body {
    background-color: rgba(255, 255, 255, 0.5);
}

.table-hover>tbody>tr:hover,
.table-hover>tbody>tr.open:hover,
.table-hover>tbody>tr.booked:hover,
.table-hover>tbody>tr.free:hover {
    background-color: #f5f5f526;
    cursor: default;
}

.table-hover>tbody>tr.open {
    background-color: rgba(255, 0, 0, 0.2);
    cursor: default;
}

.table-hover>tbody>tr.free {
    background-color: rgba(0, 255, 0, 0.08);
    cursor: default;
}

.table-hover>tbody>tr.booked {
    background-color: rgba(199, 15, 255, 0.4);
    cursor: default;
}

.table-hover>tbody>tr.nohover,
.table-hover>tbody>tr.nohover:hover {
    background-color: transparent !important;
    cursor: default;
}

.centered {
    text-align: center !important;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    display: inline-block;
    border-radius: 8px;
    margin-top: 30px;
    padding: 16px 8px;
    background-color: lightblue;
    -webkit-box-shadow: 16px 16px 18px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 16px 16px 18px 0 rgba(0, 0, 0, 0.3);
}

.special {
    margin-top: 32px;
    padding: 16px;
    background-color: rgb(112, 0, 146);
    border-radius: 8px;
}

.description {
    margin-top: 32px;
    padding: 16px;
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 8px;
    color: black;
}

.footer {
    margin-top: 32px;
    margin-bottom: 48px;
}

.maintenance {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4px 0 16px 0;
    border: 1px solid red;
}

.maintenance h3 {
    text-shadow: 5px 5px 3px #000000;
    color: red;
}

[class*="col-"] {
    margin-bottom: 15px;
}