.sborka-container {
         
           
            
         

}
.sborka-container::-webkit-scrollbar {
    width: 10px;
}
.sborka-container::-webkit-scrollbar-thumb {
    background-color: #1abc9c; /* Цвет ползунка прокрутки */
   
}
.sborka-block {
    background: #f9f9f9;
 

    flex: 1;
    min-width: 300px;
    font-size: 16px;
}
.sborka-number {
    font-weight: bold;
    color: #1abc9c;
}
.sborka-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
}
.sborka-checkbox label {
    font-size: 18px;
    margin-left: 10px;
}
.sborka-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #1abc9c;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}
.sborka-checkbox input[type="checkbox"]:checked::after {
    content: '✔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1abc9c;
    font-size: 14px;
}
#sborka-search {
    width: calc(100% - 40px);
    padding: 10px;
    font-size: 16px;
    border: 2px solid #1abc9c;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.sborka-button {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}
.sborka-button:hover {
    background: #16a085;
}
.sborka-hidden {
    display: none;
}
.sborka-result-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}
.sborka-product-name {
    flex: 1;
    margin-right: 20px; /* Отступ между названием и ценой */
}
.sborka-price {
    color: #D83B2D;
    font-weight: bold;
    margin-right: 10px; /* Отступ перед кнопками */
    white-space: nowrap;
}
.sborka-controls button {
    background: #1abc9c;
    color: white;
    border: none;
    padding: 3px 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}
.sborka-controls button:hover {
    background: #16a085;
}
.sborka-category {
    color: #D83B2D;
    font-size: 20px;
    margin-bottom: 10px;
}
.sborka-total {
    font-weight: bold;
    margin-top: 20px;
}

  @media (max-width: 800px) {
    .sborka-print-button {
        display: none; /* Скрываем кнопку "Распечатать" на маленьких экранах */
    }
}

/* Стиль для квадратных чекбоксов на этапе поиска */
#sborka-search-results .sborka-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px; /* Установите желаемую ширину */
    height: 20px; /* Установите желаемую высоту */
    border: 2px solid #1abc9c; /* Цвет границы */
    border-radius: 0; /* Квадратная форма */
    outline: none;
    cursor: pointer;
    position: relative;
    background: white; /* Фон чекбокса */
}

/* Стиль галочки внутри чекбокса */
#sborka-search-results .sborka-checkbox input[type="checkbox"]:checked::after {
    content: "✔"; /* Символ галочки */
    font-size: 14px;
    color: #1abc9c; /* Цвет галочки */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}