.lindoi-search-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.lindoi-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.lindoi-tab {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 18px;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lindoi-tab.active {
    font-weight: bold;
}

.lindoi-search-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
}

.lindoi-results {
    margin-top: 20px;
}

.lindoi-result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.lindoi-result-item img {
    max-width: 60px;
    margin-right: 15px;
}

@media (max-width: 768px) {
    .lindoi-tab {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px;
    }

    .lindoi-result-item {
        flex-direction: column;
        text-align: center;
    }

    .lindoi-result-item img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .lindoi-results ul {
        padding: 0;
        margin: 0;
    }

    .lindoi-results li {
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .lindoi-results img {
        width: 80px;
    }

    .lindoi-section input[type="text"] {
        font-size: 16px;
        padding: 12px;
    }

    .button {
        font-size: 16px;
        padding: 12px 20px;
    }

    .dashicons {
        font-size: 24px;
    }
}