/* Category selection panel */
.inkora-category-panel .components-panel__body-title {
    margin-bottom: 10px;
}

.inkora-categories-list {
    scrollbar-width: thin;
    scrollbar-color: #2271b1 #e0e0e0;
}

.inkora-categories-list::-webkit-scrollbar {
    width: 6px;
}

.inkora-categories-list::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

.inkora-categories-list::-webkit-scrollbar-thumb {
    background: #2271b1;
    border-radius: 3px;
}

.inkora-categories-list .components-checkbox-control {
    margin-bottom: 0;
}

.inkora-categories-list .components-checkbox-control__label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

/* Selected category highlight */
.inkora-categories-list div[style*="background: #f0f6fc"] {
    transition: background 0.3s ease;
}

/* Search box styling */
.inkora-category-panel .components-text-control__input {
    margin-bottom: 10px;
}