
#search-trigger-bar {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 14px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    max-width: 200px;
    margin: 20px auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: "IRANSans", sans-serif;
}

#search-trigger-bar input {
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    text-align: center;
    width: 100%;
    pointer-events: none;
    font-family: "IRANSans", sans-serif;
}

#search-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#search-overlay.active {
    display: flex;
}

#overlay-content {
    text-align: center;
    width: 80%;
    max-width: 500px;
}

#overlay-search-wrapper {
    background: white;
    border-radius: 12px;
    padding: 10px 20px;
}

#live-search {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    background: transparent;
    direction: rtl;
    font-family: "IRANSans", sans-serif;
}

#search-results {
    margin-top: 20px;
    background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: right;
    font-family: "IRANSans", sans-serif;
}

#search-results a {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
}
