/* استایل کلی و لایت مود */
.chinod-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
    max-width: 900px;
    margin: 0 auto;
    direction: rtl;
    font-family: inherit;
}

.chinod-icon-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.chinod-search-bar {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 5px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.chinod-search-input {
    border: none !important;
    background: transparent !important;
    flex-grow: 1;
    padding: 12px 15px !important;
    font-size: 15px;
    color: #333;
    box-shadow: none !important;
    outline: none !important;
}

.chinod-search-bar .dashicons {
    color: #777;
    font-size: 22px;
}

/* استایل پیشنهادات ایجکس */
.chinod-suggestions {
    display: none;
    position: absolute;
    top: 65px;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    z-index: 999;
    overflow: hidden;
}

.chinod-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.chinod-suggestions li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
    border-bottom: 1px solid #f9f9f9;
}

.chinod-suggestions li a:hover {
    background: #f5f5f5;
}

.chinod-suggestions li img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
}

/* --- تنظیمات دارک مود --- */
.chinod-search-wrapper.chinod-dark-mode .chinod-icon-btn {
    color: #fff;
}

.chinod-search-wrapper.chinod-dark-mode .chinod-search-bar {
    background-color: #1e1e1e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.chinod-search-wrapper.chinod-dark-mode .chinod-search-input {
    color: #eee;
}

.chinod-search-wrapper.chinod-dark-mode .chinod-search-input::placeholder {
    color: #888;
}

.chinod-search-wrapper.chinod-dark-mode .chinod-search-bar .dashicons {
    color: #aaa;
}

.chinod-search-wrapper.chinod-dark-mode .chinod-suggestions {
    background: #252525;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.chinod-search-wrapper.chinod-dark-mode .chinod-suggestions li a {
    color: #eee;
    border-bottom: 1px solid #333;
}

.chinod-search-wrapper.chinod-dark-mode .chinod-suggestions li a:hover {
    background: #2d2d2d;
}

/* استایل هایلایت کلمات در مقالات */
.chinod-highlight {
    background-color: rgba(255, 215, 0, 0.4); /* زرد ملایم */
    color: #000;
    padding: 0 4px;
    border-radius: 4px;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
}