#translation-suggestions {
    margin-top: 5px;
    padding: 0;
    max-height: 150px;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: absolute;
}

.suggestion {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #00c3fe;
    font-size: 16px;
    color: #333;
}

.suggestion:hover {
    background-color: #f1f1f1;
    color: #000;
}

.suggestion:last-child {
    border-bottom: none;
}

.move-down {
    margin-top: 30px;
    transition: margin-top 0.4s ease;
}