﻿body {
    background-color: #FFFFFF!important;
}

.custom-icon {
    margin-left: 5px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.jstree, .jstree-container-ul {
    display: block !important;
    visibility: visible !important;
}    

.company-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

.company-card {
    flex: 1 1 300px; /* до 300px, но может быть меньше */
    max-width: 350px;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
}

.company-card:hover {
    transform: translateY(-4px);
}

.company-card h3 {
    font-size: 18px;
    margin: 0 0 8px;
}

.company-card p {
    font-size: 14px;
    margin: 0;
    color: #555;
}

#FilterBt {
    background-color: blue;
    color: yellow;
    text-aling: center;
    padding: 10px;
    margin-top: 10px;
    font-weight: bold;
    width: 100px;
}

#FilterClearBt {
    background-color: red;
    color: white;
    text-aling: center;
    padding: 10px;
    margin-top: 10px;
    font-weight: bold;
    width: 100px;
}