body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #d6d6d6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 62.5rem;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    position: relative;
    overflow: hidden; /* Ограничивает содержимое контейнера */
}

h3 {
    text-align: center;
    margin-bottom: 10px;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

li {
    margin: 0 10px;
    padding: 10px;
}

a {
    text-decoration: none;
    color: #2196f3;
    font-size: 18px;
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

a:hover {
    background-color: #2196f3;
    color: #fff;
}


    @media (max-width: 767px) {

        .tour-table {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
    
        .tour-table tr {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
    
        .tour-table td {
            display: inline-flex;
            width: auto;
            margin: 5px;
        }
    }


.tour-table {
    display: table;
}


.season-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.tour-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tour-table td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
}

