.menu {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;

    display: flex;
    justify-content: center;

    padding: 20px;
    gap: 15px;
}

.empty_frame {
    align-content: center;

    width: 100%;
    height: 100vh;

    background: linear-gradient(to bottom, var(--linear-gradient-color-start), var(--linear-gradient-color-end)), url('./empty-text.svg') repeat-x 50%;
}

.empty_frame.hide {
    display: none;
}

.toggle-btn {
    width: 154px;
    padding: 12px 15px;

    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    color: #34374a;
    border: none;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 2px 4px 0 #5f698333;
}
