body {
    background-color: #f9fbff;
    padding-top: 50px;
    display: flex;
}

.header {
    margin-bottom: 40px;
}

.city-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 40px;
}

.city-title {
    border-bottom: 1px solid #ccc;
}

.city-title h2 {
    color: #007bff;
    font-size: 24px;
}

.university-list {
    list-style-type: none;
    padding-left: 0;
}

.university-list li {
    margin-bottom: 8px;
}

.university-list li a {
    text-decoration: none;
    color: #343a40;
    transition: color 0.3s;
}

.university-list li a:hover {
    color: #007bff;
    text-decoration: underline;
}

.content-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
}
.telegram-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.telegram-icon a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url('https://telegram.org/img/t_logo.png') no-repeat center center;
    background-size: contain;
    text-indent: -9999px;
}

.university-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    overflow-x: auto;
}

.university-table th, .university-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
}

.university-table th {
    background-color: #f8f9fa;
    color: #343a40;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid #e9ecef;
    text-align: center;
    padding: 15px 10px;
}

.university-table td {
    text-align: center;
}

.university-table tbody tr:hover {
    background-color: #f1f1f1;
}

.university-table a {
    text-decoration: none;
    color: #343a40;
    transition: color 0.3s;
}

.university-table a:hover {
    color: #007bff;
    text-decoration: underline;
}

.university-table .total-row {
    font-weight: bold;
    background-color: #f8f9fa;
}

@media (max-width: 650px) {
    .city-title h2 {
        font-size: 20px;
    }

    .university-table th, .university-table td {
        padding: 8px;
        font-size: 14px;
    }
}