/**
 * Category Combobox Styles
 * Integrated searchable category selector
 */

.category-combobox {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.category-combobox-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    cursor: pointer;
    color: black !important;
    border-radius: 0px !important;
    border: 1px solid #000 !important;
    height: 60px !important;
    font-size: 18px !important;
    color:black !important;
}

.category-combobox-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.category-combobox-input::placeholder {
    color: #999;
}

.category-combobox-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-combobox-list.open {
    max-height: 300px;
    overflow-y: auto;
}

.category-combobox-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.category-combobox-item:hover:not(.disabled) {
    background-color: #f5f5f5;
}

.category-combobox-item:focus {
    outline: none;
    background-color: #e8f4f8;
}

.category-combobox-item.selected {
    background-color: #e8f4f8;
    font-weight: 500;
    border-left: 3px solid #0073aa;
    padding-left: 12px;
}

.category-combobox-item.disabled {
    color: #999;
    background-color: #f9f9f9;
    cursor: not-allowed;
    opacity: 0.6;
}

.category-combobox-item.depth-0 {
    font-weight: 600;
    color: #333;
    padding-left: 15px;
}

.category-combobox-item.depth-1 {
    color: #555;
    padding-left: 35px;
}

.category-combobox-item.depth-2 {
    color: #666;
    padding-left: 55px;
}

.category-combobox-item.depth-3 {
    color: #777;
    padding-left: 75px;
}

.category-combobox-item.depth-4 {
    color: #888;
    padding-left: 95px;
}

.category-combobox-no-results {
    padding: 10px 12px;
    color: #999;
    text-align: center;
    font-style: italic;
}

.category-combobox-hidden {
    display: none;
}

@media (max-width: 768px) {
    .category-combobox-input {
        font-size: 16px;
        padding: 12px;
    }

    .category-combobox-list {
        max-height: 0;
    }

    .category-combobox-list.open {
        max-height: 250px;
    }

    .category-combobox-item {
        padding: 12px;
        font-size: 16px;
    }
}
