#attributefilter_block_left {
    margin-bottom: 20px;
    background: #fff;
    /*border: 1px solid #e8e8e8;*/
    border-radius: 4px;
    padding: 15px;
}

#attributefilter_block_left .title_block {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f1f1;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

/* Estilos de Checkboxes con scroll */
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #f1f1f1;
    border-radius: 4px;
    padding: 10px;
}

.filter-list::-webkit-scrollbar {
    width: 8px;
}

.filter-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.filter-list::-webkit-scrollbar-thumb {
    background: #25b9d7;
    border-radius: 4px;
}

.filter-list::-webkit-scrollbar-thumb:hover {
    background: #1da5bf;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    padding: 8px;
    border-radius: 3px;
    transition: background 0.2s;
}

.filter-list label:hover {
    background: #f9f9f9;
}

.filter-checkbox {
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.filter-list li.disabled {
    opacity: 0.5;
}

.filter-list li.disabled label {
    cursor: not-allowed;
}

.filter-list label span:first-of-type {
    flex: 1;
}

.count {
    color: #999;
    font-size: 12px;
    margin-left: 8px;
    font-weight: 500;
}

/* Botones */
.filter-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.btn-filter, .btn-clear {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border: none;
    transition: all 0.3s;
}

.btn-filter {
    background: #25b9d7;
    color: #fff;
    flex: 1;
}

.btn-filter:hover {
    background: #1da5bf;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 185, 215, 0.3);
}

.btn-clear {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

.btn-clear:hover {
    background: #e8e8e8;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-list {
        max-height: 250px;
    }
}