#navigation-bottom-html {
    width: 700px;
    height: 80px;
    background-color: #000;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 16px;
    position: fixed;
    z-index: -1;
    opacity: 0;
}
#navigation-bottom-html .input-wrapper {
    background-color: #202028;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 383px;
    height: 48px;
}
#navigation-bottom-html .input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 16px;
    color: #fff;
}
#navigation-bottom-html button {
    background-color: #202028;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    min-width: 120px;
}
#navigation-bottom-html button:hover {
    background: #2B2B32;
}
#navigation-bottom-html button p {
    color: #FFF;
    font-size: 20px;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}
