/* Enhanced styling for Property Features with green theme */

/* Container styling */
.property-features-category-wrapper {
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.feature-category-title {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Enhanced Choices.js input styling */
.property-features-category-wrapper .choices {
    margin-bottom: 0;
}

.property-features-category-wrapper .choices__inner {
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    min-height: 3.5rem;
    padding: 0.75rem 1rem;
    font-size: 13px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.property-features-category-wrapper .choices__inner:hover {
    border-color: #9ca3af;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.property-features-category-wrapper .choices.is-focused .choices__inner {
    border-color: #1d6d29;
    box-shadow: 0 0 0 3px rgba(29, 109, 41, 0.1);
}

/* Green theme tags */
.property-features-category-wrapper .choices__list--multiple .choices__item {
    background: #1d6d29 !important;
    color: #ffffff !important;
    border: 1px solid #1d6d29 !important;
    border-radius: 20px;
    padding: 0.5rem 0.875rem;
    margin: 0.125rem 0.25rem 0.125rem 0;
    font-size: 13px;
    font-weight: 500;
    animation: tagSlideIn 0.3s ease-out;
    transition: all 0.2s ease;
}

.property-features-category-wrapper .choices__list--multiple .choices__item:hover {
    background: #155a22 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(29, 109, 41, 0.3);
}

/* Hide search input completely - pure click-only */
.property-features-category-wrapper .choices__input {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    opacity: 0 !important;
}

.property-features-category-wrapper .choices__input--cloned {
    display: none !important;
}

/* Make the container purely click-based */
.property-features-category-wrapper .choices__inner {
    cursor: pointer;
    user-select: none;
}

/* Ensure no text input is possible */
.property-features-category-wrapper .choices__inner input {
    display: none !important;
}

/* Hide original select elements */
.property-features-choice-select {
    display: none !important;
}