* {
    font-family: 'Open Sans', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.table {
    text-align: center;
}

form {
    margin: 0;
}

button.available {
    background-color: rgba(49, 145, 222, 1);
}

button.available:hover {
    color: white;
    background-color: rgb(135, 180, 216, 1);
    transition: 0.3s;
}

button.disabled {
    background-color: rgb(130, 133, 136);
}

.exclusion-text {
    font-size: 12px;
}

.no-discounted-price {
    color: #b4b4b4;
}

@media screen and (max-width: 500px) {
    .two-line-placeholder {
        min-height: 2.5em;
    }
}

@media screen and (max-width: 992px) {
    .reservation-text {
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 560px) {

    .table {
        font-size: 16px;
    }

    .table th {
        font-size: 12px;
    }

    td, th {
        min-width: 30vw;
        max-width: 30vw;
        height: 2vh;
    }

}

@media only screen and (min-width: 560px) and (max-width: 765px) {

    td, th {
        font-size: 12px;
    }

    .table th {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    td {
        width: 13.5% !important;
    }
}

@media only screen and (max-width: 992px) {

    td {
        font-size: 14px;
    }
}

@media only screen and (min-width: 766px) and (max-width: 992px) {
    .delete-container-margin {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .full-size {
        min-width: 100% !important;
    }
}

@media only screen and (max-width: 1200px) {

    td, th {
        font-size: 13px;
        height: 3vh
    }

}

.game-column-element {
    font-size: 12px;
    min-width: 100px;
}

.selected-game-cell {
    background-color: rgba(101, 191, 66, 0.75) !important;
}

.reserved-game-cell {
    background: rgba(198, 44, 44, 0.75) !important;
}

.in-reservation-game-cell {
    background: rgba(255, 207, 32, 0.75) !important;
}

@media screen and (max-width: 575px) {
    .period-buttons-container button {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .period-buttons-container button {
        font-size: 12px;
    }
}