/* searchInput */
.title {
    text-align: center;
    font-size: 2rem;
    color: #16be70;
    margin-bottom: 20px;
}
#searchInput {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px auto;
    display: block;
    padding: 14px 16px;
    font-size: 1.1rem;
    background-color: #1f1f1f;
    color: #fff;
    border: 2px solid #333;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}
#searchInput:focus {
    border-color: #16be70;
    box-shadow: 0 0 8px #00ff88;
}
.lang-container.Search-r {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #1b1b1b;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}
.lang-container.Search-r.highlight {
    background-color: #00ff8823;
    transform: scale(1.02);
    border: 2px solid #00ff8869;
}
/* No Results Message */
.no-results {
    display: none;
    text-align: right;
    font-size: 1rem;
    margin-top: -20px;
    margin-bottom: 20px;
    color: #ff4444;
    background-color: #1e1e1e;
    border-right: 4px solid #ff4444;
    padding: 10px 15px;
    border-radius: 8px 0 0 8px;
    animation: fadeInRight 0.4s ease forwards;
}