/* =====================================
   Compatible Devices Search Widget
   ===================================== */
.compatible-devices-search-box {
    position: relative;
    display: flex;
    align-items: center;
}
.compatible-devices-search-widget {
    width: 100%;
    position: relative;
}

/* 🔍 Search Input */
.compatible-devices-search-widget .compatible-devices-search-input {
    width: 100%;
    padding: 10px 12px 10px 40px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
    background-color: var(--e-global-color-secondary, #f8f8f8);
    color: var(--e-global-color-text, #333);

    /* Background search icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.32 14.9l5.39 5.4a1 1 0 0 1-1.42 1.4l-5.38-5.38a8 8 0 1 1 1.41-1.41zM10 16a6 6 0 1 0 0-12 6 6 0 0 0 0 12z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 10px center;
}

.compatible-devices-search-widget .compatible-devices-search-input:focus {
    border-color: #0073e6;
    box-shadow: 0 0 0 2px rgba(0, 115, 230, 0.15);
}

/* 🔲 Search Results Wrapper */
.compatible-devices-groups {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 40px 4px;
    padding: 20px;
    margin-top: 16px;
    border-radius: 16px;
    max-height: 400px;
    overflow: auto;
    background: #fff;
    display: none;
    transition: opacity 0.3s ease;
}

/* 🧩 Group Headings */
.compatible-devices-group h5 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--e-global-color-primary, #111);
}

.compatible-devices-desc {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* 📱 Device List */
.compatible-devices-results {
    padding: 0;
    list-style: none;
}

.compatible-device-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    color: #333;
    font-size: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.compatible-device-item:last-child {
    border-bottom: none;
}

/* ✅ Checkmark before each device */
.compatible-device-item:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24px' height='24px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 12.6111L8.92308 17.5L20 6.5' stroke='%2335c759' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* 🔘 Clear Button */
.compatible-devices-clear-btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: #ddd;
    border-radius: 50%;
    position: absolute;
    right: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.compatible-devices-clear-btn:hover {
    background: #ccc;
}

.compatible-devices-clear-btn svg {
    width: 14px;
    height: 14px;
}

/* 📱 Responsive Tweaks */
@media (max-width: 767px) {
    .compatible-devices-search-widget .compatible-devices-search-input {
        font-size: 14px;
    }

    .compatible-devices-groups {
        padding: 16px;
    }

    .compatible-device-item {
        font-size: 14px;
    }
}
