.tutorial-tip {
    width: 400px;
    max-width: 100vw;
    font-size: 18px;
    z-index: var(--z-tutorial);
}

.tutorial-tip .material-symbols-outlined {
    cursor: pointer;
}

.box-arrow {
    position: relative;
    display: flex;
    justify-items: center;
    flex-direction: column;
    user-select: none;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.down-box {
    background-color: #6a3de8; /* Warm orange */
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    padding: 16px 16px;
    line-height: 32px;
    font-family: "Roboto", sans-serif;
    margin: 0;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
}
.down-box>div:first-child {
    width: 24px;
}

.down-box-arrow {
    border-width: 10px;
    border-style: solid;
    border-color: #6a3de8 transparent transparent transparent; /* Triangle pointing down */
    pointer-events: visibleFill;
}