.container {
    width: 100%;
    height: 100%;
}

.hint {
    width: 100%;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    background-color: var(--color-bg-overlay);

    user-select: none;
    z-index: 10;
    visibility: visible;
    transition: all 0.4s ease-in-out;
    opacity: 1;
}

.hint.hidden {
    visibility: hidden;
    opacity: 0;
}

.text {
    display: flex;
    color: #f2f5fa;
    font-size: 16px;
    gap: 4px;
    align-items: center;
    font-weight: 500;
    line-height: 21px;
}

.command {
    height: 20px;
    border-radius: 4px;
    padding: 2px 6px;
    background-color: #050d3366;
    vertical-align: center;
}
