.koosh-search-container {
    position: relative;
    max-width: 100%;
    direction: rtl;
    font-family: inherit;
    margin: 0 auto;
}
.koosh-search-form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}
.koosh-search-input {
    width: 100%;
    padding: 10px 15px 10px 75px; 
    border: 1px solid #ddd;
    outline: none;
    transition: all 0.3s;
    box-sizing: border-box;
}
.koosh-search-btn-text {
    position: absolute;
    left: 8px;
    background: transparent;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    font-weight: bold;
    padding: 6px 12px;
    transition: all 0.3s;
    z-index: 2;
}
.koosh-search-btn-text:hover {
    opacity: 0.8;
}
.koosh-results-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 5px;
    z-index: 9999;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
}
.koosh-group-title {
    font-size: 11px;
    padding: 5px 15px;
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 5px;
}
.koosh-result-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    color: inherit !important;
    transition: background 0.2s;
}
.koosh-result-item:hover {
    background: rgba(0,0,0,0.03);
}
.koosh-result-item img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    margin-left: 15px;
}
.koosh-item-title {
    font-size: 14px;
    font-weight: 500;
}
.koosh-count {
    font-size: 11px;
    margin-right: 5px;
    font-weight: normal;
}
.koosh-view-all, .koosh-loading, .koosh-no-results {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    text-decoration: none;
    border-top: 1px solid #eee;
}
