/* Styling for tables */

h1 {
    text-align: center;
    margin: 5rem 0;
    font-size: 4.5rem;
    font-weight: 800;
}

p {
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
}

.table-grid {
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    width: calc(100% - 3rem) !important;
    margin: auto;
    overflow-x: hidden;
}

@media (max-width: 35rem) {
    .table-grid {
        overflow-x: scroll;
    }
}

table {
    border: solid 0.2rem black;
    border-collapse: collapse;
    max-width: 65rem;
    margin: auto;
}

tr, th, td {
    border: solid 0.1rem rgba(138, 138, 138, 0.595);
}

td {
    padding: 2rem;
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
}

th {
    color: white;
    background-color: black;
    height: 2rem;
    font-size: 1.7rem !important;
    font-weight: bold !important;
    padding: .5rem .8rem;
}

.date {
    width: 25%;
}

.hotel {
    width: 60%;
}

.time {
    width: 15%;
}

@media (max-width: 42.4rem) {
    h1 {
        font-size: 3.5rem;
    }

    p {
        font-size: 1.6rem;
    }

    tr, th, td {
        font-size: 1.4rem !important;
    }

    td {
        padding: 0.5rem;
        height: 4rem;
        font-weight: 400;
    }
}