.plx-container {
    display: flex;
    background: #222831;
    color: #fff;
    font-family: Arial, sans-serif;
}

.plx-sidebar {
    width: 20%;
    padding: 10px;
    background: #393E46;
    border-right: 1px solid #444;
    margin-bottom: 70px;
}

.plx-category {
    padding: 10px;
    cursor: pointer;
    background: #eeeae8;
    margin-bottom: 5px;
    color: black;
    border-radius: 7px;
}

.plx-category:hover {
    background: #c1c1c1;
    border-radius: 7px;
}
.plx-subcategories-container{
    background: #393E46;
    padding: 10px;
}

.plx-subcategories {
    width: 20%;
    padding: 10px;
    background: #393E46;
    border-right: 1px solid #444;
}

.plx-subcategory {
    color: black;
    padding: 10px;
    cursor: pointer;
    background: #eeeae8;
    margin-bottom: 5px;
    border-radius: 7px;
}

.plx-subcategory:hover {
    background: #c1c1c1;
    border-radius: 7px;
}

.plx-content {
    flex-grow: 1;
    padding: 10px;
    background: #393E46;
    margin-bottom: 70px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    color: black;
}
tr{

}
tr:hover{
    color: #1b6ed3;
}

th, td {
    padding: 10px;
    border: 1px solid #444;
    text-align: left;
    background: #eeeae8;
    color: black;
}


th {
    background: #eeeae8;
}

tr:nth-child(even) {
    background: #eeeae8;
}



.link-is-pl{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    white-space: nowrap; /* Запрещаем перенос слов */
}
.link-is-pl a{
    color: white;
    text-decoration: none;
}
.link-is-pl span{
 color: white;
}
.plx-sidebar-title{
    color: white;
    font-size: 20px;
}


.plx-product-row {
    cursor: pointer;
    transition: background 0.3s ease;
}

.plx-product-row:hover {
    background: rgba(255, 255, 255, 0.1); /* Подсветка при наведении */
}


@media screen and (max-width: 700px ){
    .plx-sidebar{
        width: 135px;
    }
    .plx-category{
        padding: 4px;
        font-size: 13px;
    }
    th, td{
        padding: 5px;
    }
    .plx-table{
        font-size: 13px;
    }
    .plx-subcategory{
        font-size: 13px;
    }
    .plx-subcategory{
        padding: 5px;
    }
}

.bot-menu-item{
    display: flex;
    justify-content: center;
    width: 20%;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 12px;
    text-decoration: none;
}


.plx-product-image {
    width: 50px;  /* Размер фото */
    height: 50px;
    object-fit: cover;  /* Обрезка без искажений */
    border-radius: 5px; /* Скругление углов */
}

.plx-product-row-img{
    text-align: center !important;
}
