/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background-color: #fff;
}

h1, h2, h3 {
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: #4CAF50;
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pagination a {
    color: #4CAF50;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    margin-right: 5px;
}

.breadcrumb ul {
    list-style: none; /* ??????? ??????? ?????? */
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline-block; /* ?????????? ???????? ?????? ? ?????? */
}

.breadcrumb li + li:before {
    content: " > "; /* ????????? ??????????? ????? ?????????? */
    padding: 0 5px;
    color: #ccc;
}
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    th {
        display: none;
    }

    td {
        position: relative;
        padding-left: 50%;
    }

    td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 15px;
        font-weight: bold;
    }
}

.navigation-links .links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation-links .links-list-item {
    display: inline-block;
    margin-right: 10px;
}

.navigation-links .navigation-link {
    /* ????? ??? ?????? */
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none; /* ??????? ????????????? */
    color: #333;          /* ???? ?????? */
}

.navigation-links .navigation-link:hover {
    /* ????? ??? ????????? */
    background-color: #eee;
}

.navigation-links .prev-links,
.navigation-links .next-links {
    margin-bottom: 20px; /* ?????? ????? ??????? "??????????" ? "?????????" */
}
