/* Plat list styles */

.plat-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.plat-list__item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    margin: 15px;
    padding: 20px;
    width: calc(33.333% - 30px);
}

.plat-list__item-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.plat-list__item-title a {
    color: #1a73e8;
}

.plat-list__item-title a:hover {
    color: #164ead;
}

.plat-list__item-description {
    flex-grow: 1;
    font-size: 14px;
    margin-bottom: 20px;
}

.plat-list__item-child {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.plat-list__item-child-title {
    background-color: #f1f1f1;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 4px 8px;
}

.plat-list__item-child-title a {
    color: #1a73e8;
    text-decoration: none;
}

.plat-list__item-child-title a:hover {
    color: #164ead;
}


.plat-list__item-users,
.plat-list__item-trons {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}


/* Pagination styles */

.plat-list-pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.plat-list-pagination__item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #1a73e8;
    display: block;
    margin: 0 5px;
    padding: 6px 12px;
}

.plat-list-pagination__item--current,
.plat-list-pagination__item:hover {
    background-color: #1a73e8;
    color: #fff;
}


/* Responsive styles */

@media screen and (max-width: 1024px) {
    .plat-list__item {
        width: calc(50% - 30px);
    }
}

@media screen and (max-width: 767px) {
    .plat-list__item {
        width: calc(100% - 30px);
    }
}