@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --light-grey: rgb(241, 241, 241);
}
a {
    text-decoration: none;
    color: inherit;
}
body {
    padding-top: 120px;
    font-family: 'Inter', 'sans-serif' !important;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.umd-pagination {
    display: flex;
    justify-content: center;
}
.umd-pagination nav> div:nth-child(2)> div:nth-child(1){
    display: none !important;
}
.umd-pagination .pagination .page-item.active .page-link {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}
.umd-pagination .pagination .page-item .page-link {
    color: black !important;
}
@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Меньший отступ для мобильных (top-contact-bar скрыт) */
    }

    .umd-pagination nav> div:nth-child(1) {
        display: none !important;
    }

    .umd-pagination nav> div:nth-child(2) {
        display: flex !important;
    }

    .pages-container {
        padding-top: 4rem !important;
    }
}


.btn-umd-warning {
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}
.btn-umd-warning:hover{
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-umd-warning {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}
.btn-outline-umd-warning:hover{
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: black;
}


table {
    width: 100%;
}

table tbody tr>td {
    border: 1px solid black;
}
blockquote {
    border-left: 4px solid var(--secondary-color);
    background: #f9f9f9;
    padding: 10px 15px;
    margin: 1em 0;
    font-style: italic;
    color: #333;
}
